forked from DHI/modelskill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (73 loc) · 1.9 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = ["notebooks", "tests"]
[project]
name="modelskill"
version="1.1.dev0"
dependencies = [
"numpy >= 1.20.0",
"pandas >= 1.4",
"mikeio >= 1.2",
"matplotlib",
"xarray",
"scipy",
"jinja2",
]
authors = [
{ name = "Jesper Sandvig Mariegaard", email="[email protected]" },
{ name="Henrik Andersson",email="[email protected]"},
]
description="Compare results from simulations with observations."
license="MIT"
readme = "README.md"
requires-python = ">=3.8"
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.8",
"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",
"mkdocs==1.5.3",
"mkdocs-material==9.5.6",
"mkdocstrings==0.24.0",
"mkdocstrings-python==1.7.5",
"black==22.3.0",
"plotly >= 4.5",
"ruff",]
test = [
"pytest",
"netCDF4",
"openpyxl",
"dask",
"mypy",
"types-PyYAML",
]
notebooks = [
"nbformat",
"nbconvert",
"jupyter",
"plotly",
"shapely",
]
[project.urls]
"Homepage" = "https://github.com/DHI/modelskill"
"Bug Tracker" = "https://github.com/DHI/modelskill/issues"
[tool.ruff]
# ignore line too long
ignore = ["E501"]
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
warn_unreachable = false
no_implicit_optional = true