-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (50 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
61 lines (50 loc) · 1.09 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["fmdap/**/*"]
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "fmdap"
version = "0.2.dev0"
description = "MIKE FM Data Assimilation pre- and post-processor."
authors = [{ name = "Jesper Sandvig Mariegaard", email = "jem@dhigroup.com" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"pandas",
"matplotlib",
"scipy",
"statsmodels",
"mikeio>=1.2.0",
"modelskill",
]
[project.optional-dependencies]
dev = [
"pytest",
"sphinx",
"sphinx-book-theme",
"shapely",
"plotly >= 4.5",
"ruff==0.11.0",
]
test = ["pytest", "shapely"]
notebooks = ["nbformat", "nbconvert", "jupyter", "plotly"]
[project.urls]
Homepage = "https://github.com/DHI/fmdap"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
ignore = ["E731"]
[tool.ruff.format]
indent-style = "space"
line-ending = "lf"
[tool.mypy]
python_version = "3.10"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.pylint]
max-line-length = 88