-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpyproject.toml
More file actions
130 lines (122 loc) · 3.23 KB
/
pyproject.toml
File metadata and controls
130 lines (122 loc) · 3.23 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm[toml]>=6.4",
]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.10"
name = "spotpy"
description = "A Statistical Parameter Optimization Tool."
authors = [
{name = "Tobias Houska", email = "tobias.houska@umwelt.uni-giessen.de"},
{name = "Philipp Kraft"},
{name = "Alejandro Chamorro-Chavez"},
{name = "Lutz Breuer"},
{name = "Sebastian Müller", email = "sebastian.mueller@ufz.de"},
{name = "Anna Herzog", email = "anna.herzog@uni-potsdam.de"}
]
maintainers = [
{name = "Tobias Houska", email = "tobias.houska@umwelt.uni-giessen.de"},
]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
keywords = [
"Monte Carlo",
"MCMC",
"MLE",
"SCE-UA",
"Simulated Annealing",
"DE-MCz",
"DREAM",
"ROPE",
"Artifical Bee Colony",
"DDS",
"PA-DDS",
"NSGAii",
"Uncertainty",
"Calibration",
"Model",
"Signatures",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: Microsoft",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Utilities",
]
dependencies = [
"numpy>=2.0",
"scipy>=1.5.0",
]
[project.optional-dependencies]
plotting = [
"pandas>=1",
"matplotlib>=3",
]
test = [
"pytest-cov>=3",
"numba",
"pathos",
"matplotlib",
"click",
"pandas",
"tables",
"docutils",
]
[project.urls]
Changelog = "https://github.com/thouska/spotpy/blob/master/CHANGELOG.md"
Conda-Forge = "https://anaconda.org/conda-forge/spotpy"
Documentation = "https://spotpy.readthedocs.io"
Homepage = "https://github.com/thouska/spotpy"
Source = "https://github.com/thouska/spotpy"
Tracker = "https://github.com/thouska/spotpy/issues"
[tool.setuptools_scm]
write_to = "src/spotpy/_version.py"
write_to_template = "__version__ = '{version}'"
local_scheme = "no-local-version"
fallback_version = "0.0.0.dev0"
tag_regex = "^(?:[\\w-]+-)?[vV]?\\.?(?P<version>\\d+(?:\\.\\d+){0,2}[^\\+]*)(?:\\+.*)?$"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.black]
exclude = "_version.py"
target-version = [
"py39",
"py310",
"py311",
"py312",
"py313",
]
[tool.coverage]
[tool.coverage.run]
source = ["spotpy"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
"def __repr__",
"def __str__",
"raise NotImplementedError",
"def parse_args",
]