-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (69 loc) · 2.76 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "flood-adapt"
description = "A software package support system which can be used to assess the benefits and costs of flood resilience measures"
readme = "README.md"
authors = [
{ name = "Gundula Winter", email = "Gundula.Winter@deltares.nl" },
{ name = "Panos Athanasiou", email = "Panos.Athanasiou@deltares.nl" },
{ name = "Frederique de Groen", email = "Frederique.deGroen@deltares.nl" },
{ name = "Tim de Wilde", email = "Tim.deWilde@deltares.nl" },
{ name = "Julian Hofer", email = "Julian.Hofer@deltares.nl" },
{ name = "Daley Adrichem", email = "Daley.Adrichem@deltares.nl" },
{ name = "Luuk Blom", email = "Luuk.Blom@deltares.nl" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.8"
dependencies = [
"cht-cyclones@ git+https://github.com/deltares/cht_cyclones.git",
"cht-meteo",
"cht-observations@ git+https://github.com/deltares/cht_observations.git",
"cht-tide",
"dask<2024.7.0", # The last version that still supports pandas 1.x, which we need until fiat-toolbox and noaa_cops become compatible with pandas 2.x
"fiat-toolbox",
"geojson",
"geopandas",
"jellyfish<1.0", # This is a dependency of us->hydromt-fiat, FloodAdapt doesnt use it directly. Remove when .whl files are available.
# jellyfish v1.0 starts requiring rust as a dependency, which is fine if there are built .whl files. BUT THERE ARE NO BUILDS FOR WINDOWS YET.
"hydromt-fiat==0.4.2",
"hydromt-sfincs@ git+https://github.com/Deltares/hydromt_sfincs.git@quadtree_io",
"numpy < 2.0",
"numpy-financial",
"pandas",
"plotly",
"pydantic",
"pydantic-settings",
"pyogrio",
"tomli",
"tomli-w",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pre-commit == 3.8.0",
"ruff == 0.5.5",
"typos == 1.23.6",
]
build = ["build", "twine"]
docs = ["jupyter", "jupyter-cache", "matplotlib", "quartodoc", "regex"]
all = ["flood-adapt[build,dev,docs]"]
[project.urls]
Source = "https://github.com/Deltares-research/FloodAdapt"
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic.version]
attr = "flood_adapt.__version__"
[tool.setuptools.packages.find]
include = ["flood_adapt", "flood_adapt.*"]
[tool.setuptools.package-data]
flood_adapt = ["py.typed"]
[tool.pytest.ini_options]
pythonpath = "flood_adapt" # so that we can import in the `tests` dir as if you are in the `flood_adapt` dir