forked from Deltares/hydromt_sfincs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (81 loc) · 2.12 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
84
85
86
87
88
89
90
[build-system]
requires = ["flit_core >=3.4.0,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "hydromt_sfincs"
authors = [
{name = "Roel de Goede", email = "[email protected]"},
{name = "Maarten van Ormondt", email = "[email protected]"},
{name = "Dirk Eilander", email = "[email protected]"},
{name = "Tim Leijnse", email = "[email protected]"},
]
dependencies = [
"affine",
"geopandas>1.0",
"hydromt>=0.10, <0.11",
"numba",
"numpy<2.0", # temp pin until bottleneck release v1.4
"pandas",
"pillow",
"pyflwdir>=0.5.5",
"pyproj",
"rasterio",
"scipy",
"shapely",
"xarray",
]
requires-python = ">=3.9" # fix tests to support older versions
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 :: Hydrology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
]
dynamic = ['version', 'description']
[project.optional-dependencies]
test = [
"black[jupyter]",
"pytest>=2.7.3",
"pytest-cov",
"pre-commit",
]
doc = [
"nbsphinx",
"pydata-sphinx-theme",
"sphinx",
"sphinx_design",
]
examples = [
"cartopy",
"descartes",
"ffmpeg",
"jupyterlab",
"matplotlib",
"pillow",
]
full = ["hydromt_sfincs[test, doc, examples]"]
[project.urls]
Documentation = "https://deltares.github.io/hydromt_sfincs/"
Source = "https://github.com/Deltares/hydromt_sfincs"
[project.entry-points."hydromt.models"]
sfincs = "hydromt_sfincs.sfincs:SfincsModel"
[tool.black]
line-length = 88
target-version = ['py311']
[tool.flit.sdist]
include = ["hydromt_sfincs"]
exclude = ["docs", "examples", "envs", "tests", "binder", ".github", "sandbox"]
[tool.make_env]
channels = ["conda-forge"]
deps_not_in_conda = [
"sphinx_design",
"black[jupyter]",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:distutils Version classes are deprecated:DeprecationWarning",
]