-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "imod_coupler"
description = "iMOD Coupler can be used to couple hydrological kernels"
readme = "README.md"
authors = [
{ name = "Julian Hofer", email = "Julian.Hofer@deltares.nl" },
{ name = "Martijn Russcher", email = "Martijn.Russcher@deltares.nl" },
{ name = "Robert Leander", email = "Robert.Leander@deltares.nl" },
{ name = "Joeri van Engelen", email = "Joeri.vanEngelen@deltares.nl" },
{ name = "Luit Jan Slooten", email = "LuitJan.Slooten@deltares.nl" },
{ name = "Huite Bootsma", email = "Huite.Bootsma@deltares.nl" },
]
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.10"
dependencies = [
"h5netcdf",
"loguru",
"numpy",
"pydantic",
"ribasim_api",
"scipy",
"tomli-w",
"tomli",
"xmipy",
]
dynamic = ["version"]
[tool.hatch.version]
path = "imod_coupler/__init__.py"
[project.scripts]
imodc = "imod_coupler.__main__:main"
[project.urls]
Source = "https://github.com/Deltares/imod_coupler"
[tool.ruff]
lint.select = ["C4", "E", "F", "I", "NPY", "PD", "UP"]
lint.ignore = ["E501", "PD901", "PD004"]
lint.fixable = ["I"]
[tool.mypy]
plugins = ["pydantic.mypy", "numpy.typing.mypy_plugin"]