-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (55 loc) · 1.73 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = ["notebooks", "tests"]
[project]
name = "mikeplus"
version = "2025.0.0"
dependencies = [
"numpy",
'pythonnet>=3.0',
"pandas",
]
authors = [
{ name="Ryan Walter Murray", email="rywm@dhigroup.com" },
{ name="Wen Wu", email="WUW@dhigroup.com" },
]
description = "A python script package to manipulate MIKE+ database, run simulation by using MIKE+ data, run tools based on MIKE+ data"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
dev = ["pytest", "ruff", "shapely"]
test = ["pytest", "shapely"]
doc = ["sphinx", "myst-parser","sphinx-book-theme","mkdocs==1.5.3","mkdocs-material==9.4.14","mkdocstrings==0.24.0","mkdocstrings-python==1.7.5"]
[project.urls]
"Homepage" = "https://github.com/DHI/mikepluspy"
"Bug Tracker" = "https://github.com/DHI/mikepluspy/issues"
# mypy global options:
[tool.mypy]
python_version = "3.10"
warn_return_any = false
allow_redefinition = true
warn_unreachable = true
[tool.ruff]
# ignore long lines
lint.exclude = ["notebooks/**/*.ipynb"]
lint.ignore = ["E501"]
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"slow: slow running tests",
"license_required: requires MIKE+ license",
]