-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.55 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
[project]
name = "itzi"
version = "25.4"
description = "A distributed dynamic flood model."
authors = [
{name = "Laurent Courty", email = "[email protected]"},
]
dependencies = [
"numpy==2.2.*",
"pyinstrument==5.*",
"pyswmm>=2.0.1",
"bmipy>=2.0.1",
]
requires-python = ">=3.11"
readme = "README.rst"
license = {text = "GPL-2.0-or-later"}
keywords = ["science", "engineering", "hydrology", "flood"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Hydrology",
]
[project.urls]
Homepage = "http://www.itzi.org"
Documentation = "https://itzi.readthedocs.io"
Repository = "https://github.com/ItziModel/itzi"
Issues = "https://github.com/ItziModel/itzi/issues/"
[project.scripts]
itzi = "itzi.itzi:main"
[dependency-groups]
dev = [
"pytest==8.3.*",
"pytest-cov==6.*",
"pytest-forked==1.*",
"pandas==2.*",
"requests==2.*",
"pytest-benchmark==5.1.*",
"scipy>=1.15.2",
"pre-commit>=4.2.0",
"ruff>=0.11.6",
]
[build-system]
requires = [
"setuptools==75.*",
"numpy==2.*",
"cython==3.*"
]
build-backend = "setuptools.build_meta"
[tool.pdm]
distribution = true
[tool.pytest.ini_options]
pythonpath = ["src", "."]
addopts = ["--import-mode=importlib"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]