-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
90 lines (76 loc) · 1.93 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"modelskill/**/*",
]
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "modelskill"
version = "1.2.dev0"
dependencies = [
"numpy > 1.24.4",
"pandas >= 1.4",
"mikeio >= 1.2",
"matplotlib",
"xarray",
"netCDF4",
"scipy",
"jinja2",
"types-pyyaml>=6.0.12.20241230",
]
authors = [
{ name = "Jesper Sandvig Mariegaard", email = "jem@dhigroup.com" },
{ name = "Henrik Andersson", email = "jan@dhigroup.com" },
]
description = "Compare results from simulations with observations."
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
docs = [
"quarto-cli==1.5.57",
"quartodoc==0.9.1",
"netCDF4",
"plotly >= 4.5",
"dask",
]
dev = ["pytest", "plotly >= 4.5", "ruff==0.6.2"]
test = [
"pytest",
"pytest-cov",
"openpyxl",
"dask",
"mypy",
"types-PyYAML",
"geopandas",
]
notebooks = ["nbformat", "nbconvert", "jupyter", "plotly", "shapely", "seaborn"]
[project.urls]
"Homepage" = "https://github.com/DHI/modelskill"
"Bug Tracker" = "https://github.com/DHI/modelskill/issues"
[tool.ruff.lint]
ignore = ["E501"]
select = ["E4", "E7", "E9", "F", "D200", "D205"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
warn_unreachable = false
no_implicit_optional = true
[[tool.mypy.overrides]]
module = "modelskill.metrics"
ignore_errors = true