-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
83 lines (74 loc) · 1.99 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
81
82
83
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "hydromt_fiat"
# TODO description = "Hydrological model for flood impact assessment and adaptation planning"
authors = [
{name = "Dirk Eilander", email = "[email protected]"},
{name = "Frederique de Groen", email = "[email protected]"},
{name = "Mario Fuentes Monjaraz", email = "[email protected]"},
{name = "Luis Rodriguez Galvez", email = "[email protected]"},
{name = "Lieke Meijer", email = "[email protected]"},
{name = "Sarah Rautenbach", email = "[email protected]"},
]
requires-python = ">=3.8"
dependencies = [
"hydromt<1.0",
"geopandas",
"geopy",
"numpy",
"openpyxl",
"pandas",
"pyogrio",
"tomli-w",
"tomli",
"xarray",
"pydantic",
"osmnx",
"census",
"us",
"xarray-spatial",
"tqdm",
"pycountry-convert"
]
readme = "README.rst"
classifiers = [
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "hydromt_fiat.version.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["hydromt_fiat*"]
[tool.setuptools.package-data]
"hydromt_fiat" = ["data/**"]
[project.optional-dependencies]
test = [
"testpath",
"responses",
"pytest>=2.7.3",
"pytest-cov",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
"ruff==0.6.8",
]
[project.urls]
Documentation = "https://deltares.github.io/hydromt_fiat/"
Source = "https://github.com/Deltares/hydromt_fiat"
[project.entry-points."hydromt.models"]
fiat = "hydromt_fiat.fiat:FiatModel"
[tool.black]
line-length = 88
target-version = ['py38']