-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
80 lines (70 loc) · 1.69 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openhexa.toolbox"
version = "1.7.0"
description = "A set of tools to acquire & process data from various sources"
authors = [{ name = "Bluesquare", email = "[email protected]" }]
maintainers = [{ name = "Bluesquare", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"requests",
"python-dateutil",
"pandas",
"shapely",
"geopandas",
"polars",
"diskcache",
"pyjwt",
"cdsapi >=0.7.3",
"cads-api-client >=1.4.0",
"rasterio",
"cfgrib",
"xarray",
"epiweeks",
"datapi >=0.1.1",
"multiurl >=0.3.2"
]
[project.optional-dependencies]
dev = [
"ruff~=0.8.4",
"pytest~=8.3.2",
"build~=1.2.1",
"pytest-cov~=6.0.0",
"black~=24.10.0",
"pre-commit",
"responses",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = [
"openhexa.toolbox.dhis2",
"openhexa.toolbox.era5",
"openhexa.toolbox.hexa",
"openhexa.toolbox.iaso",
"openhexa.toolbox.kobo"
]
namespaces = true
[tool.setuptools.package-data]
"openhexa.toolbox.era5" = ["*.json"]
[project.urls]
"Homepage" = "https://github.com/blsq/openhexa-toolbox"
"Bug Tracker" = "https://github.com/blsq/openhexa-toolbox/issues"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.ruff.pycodestyle]
max-doc-length = 120
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]