-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
89 lines (82 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rws-ddlpy"
version = "0.6.1"
maintainers = [
{ name = "Fedor Baart", email = "[email protected]"},
{ name = "Jelmer Veenstra", email = "[email protected]"},
]
description = "Service from Rijkswaterstaat for distributing water quantity data."
readme = "README.md"
keywords = ["ddlpy"]
license = { text = "GPLv3" }
requires-python = ">=3.8"
dependencies = [
#numpy 1.21 is EOL since june 2023
"numpy>=1.22",
"pandas",
"python-dateutil>=2.8",
"pytz",
"tqdm",
"click",
"requests",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"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",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Home = "https://github.com/deltares/ddlpy"
Code = "https://github.com/deltares/ddlpy"
Issues = "https://github.com/deltares/ddlpy/issues"
[project.optional-dependencies]
dev = [
"bump2version>=0.5.11",
"flake8",
"pytest>=3.8.2",
"pytest-cov",
"twine",
"build",
"flake8>=3.5.0",
"tox>=3.5.2",
"twine>=1.12.1",
]
docs = [
"sphinx>=1.8.1",
"sphinx_mdinclude",
"nbsphinx",
"pydata-sphinx-theme",
#"pandoc", # installed with choco on github
]
examples = [
"jupyter",
"notebook",
"matplotlib",
]
netcdf = [
"xarray",
"h5netcdf",
]
[project.scripts]
ddlpy = "ddlpy.cli:cli"
[tool.setuptools]
packages = ["ddlpy"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--durations=0"
[tool.flake8]
exclude = "docs"