-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (81 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
91 lines (81 loc) · 1.95 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=64","setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "digital-land"
# NOTE: dynamic version because you use get_version() in setup.py
dynamic = ["version", "readme"]
description = "Data pipeline tools to collect data and process it into a dataset"
authors = [
{ name = "MHCLG Planning Data Team", email = "DigitalLand@communities.gov.uk" },
]
license = { text = "MIT" }
urls = { Homepage = "https://github.com/digital-land/digital-land-python" }
dependencies = [
"datasette",
"canonicaljson",
"click",
"cchardet",
"esridump",
"pandas",
"pyproj",
"requests",
"validators",
"xlrd==1.2.0",
"openpyxl",
"numpy<2",
"Shapely==2.0.2",
"SPARQLWrapper",
"geojson",
"spatialite",
"pyyaml",
"dataclasses-json",
"pydantic",
"json-stream",
"duckdb",
"dask",
"dask[dataframe]",
"pyarrow",
"pygit2",
"boto3",
"moto",
"psutil",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Database",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.optional-dependencies]
test = [
"coverage",
"flake8",
"pytest",
"coveralls",
"twine",
"responses",
"XlsxWriter",
"wasabi",
"pytest-mock",
"pre-commit",
"sphinx",
"sphinx-autobuild",
"sphinx_rtd_theme",
"black==24.8.0",
]
notebook = [
"jupyterlab",
]
[project.scripts]
digital-land = "digital_land.cli:cli"
[tool.setuptools]
packages = { find = {exclude = ["tests","docs"] } }
[tool.setuptools.dynamic]
# dynamic fields tell setuptools to fetch these at build time
readme = { file = ["README.md"], content-type = "text/markdown" }
[tool.setuptools_scm]
# Configure custom options here (version schemes, file writing, etc.)
version_file = "digital_land/_version.py"