-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.39 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling < 1.22"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["arches_doorstep"]
[tool.ruff.lint]
select = ["D", "F", "B"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[project]
name = "arches_doorstep"
repository = "https://github.com/flaxandteal/arches_doorstep"
readme = "README.md"
version = "0.0.6"
authors = [
{name = "Phil Weir", email = "phil.weir@flaxandteal.co.uk"},
]
license = "AGPL-3.0-only"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.11"
dependencies = [
'ltldoorstep @ git+https://github.com/flaxandteal/doorstep#development',
'shapely',
'geojson_utils',
'geopandas',
'scipy',
'arches>=7.6.0,<7.7.0',
'fuzzywuzzy>=0.18.0',
'rapidfuzz>=3.11.0',
]
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
test = [
'pytest',
'pytest-asyncio',
'mock',
'arches>=7.6.0,<7.7.0',
'asynctest'
]
inbuilt_processors = [
'pandas >= 2.0',
'arches>=7.6.0,<7.7.0',
'numpy',
'goodtables',
'pyspellchecker',
'spacy',
'unicodeblock',
'presidio_analyzer',
'presidio_anonymizer',
'presidio_structured',
'en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.8.0/en_core_web_lg-3.8.0-py3-none-any.whl',
]