-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
72 lines (65 loc) · 1.78 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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "pyet"
dynamic = ["version"]
description = "pyet - Estimation of Potential Evaporation"
readme = "README.md"
authors = [
{name = "Matevz Vremec", email = "matevz.vremec@uni-graz.at"},
{name = "Raoul Collenteur", email = "raoul.collenteur@eawag.ch"}
]
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.16",
"xarray >= 0.18.0",
"pandas >= 1.2",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Hydrology',
]
[project.urls]
Source = "https://github.com/phydrus/pyet"
Tracker = "https://github.com/phydrus/pyet/issues"
Help = "https://github.com/phydrus/pyet/discussions"
homepage = "https://github.com/phydrus/pyet"
repository = "https://github.com/phydrus/pyet"
documentation = "https://github.com/phydrus/pyet/discussions"
[tool.setuptools.dynamic]
version = { attr = "pyet.version.__version__" }
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.optional-dependencies]
rtd = [
"sphinx-autodoc-typehints",
"Ipython",
"ipykernel",
"pydata-sphinx-theme",
"sphinx-gallery",
"sphinx>=3.1",
"sphinxcontrib-bibtex",
"matplotlib",
"myst-nb",
"numpydoc",
"sphinx-design",
"seaborn",
"netcdf4",
"scikit-learn",
"scipy",
"spotpy",
"openpyxl"
]