-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (52 loc) · 1.18 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
# See https://nens-meta.readthedocs.io/en/latest/config-files.html#pyproject-toml
[build-system]
requires = ["setuptools>=69"]
[project]
name = "fews-3di"
requires-python = ">=3.8"
version = "3.9.dev0"
dependencies = [
"netCDF4",
"pandas",
"requests",
"threedi-api-client >= 4.0.1",
"threedigrid",
]
description = "FEWS-3Di coupling"
authors = [
{name = "Reinout van Rees", email = "[email protected]"},
]
readme = "README.rst"
license = {file = "LICENSE"}
[project.scripts]
run-fews-3di = "fews_3di.scripts:main"
[project.urls]
Homepage = "https://github.com/nens/fews-3di"
Changelog = "https://github.com/nens/fews-3di/blob/master/CHANGES.rst"
[project.optional-dependencies]
test = [
"data-science-types",
"mock",
"pytest",
"pytest-mypy",
]
[tool.setuptools]
packages = ["fews_3di"]
[tool.pytest.ini_options]
testpaths = ["fews_3di"]
log_level = "DEBUG"
[tool.coverage.run]
source = ["fews_3di"]
[tool.coverage.report]
show_missing = true
skip_empty = true
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP"]
[tool.zest-releaser]
release = false
[tool.pyright]
include = ["fews_3di"]
venvPath = "."
venv = ".venv"