-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (85 loc) · 2.79 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 = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kenmerkendewaarden"
version = "0.3.1"
maintainers = [{ name = "Jelmer Veenstra", email = "jelmer.veenstra@deltares.nl" }]
description = "Derive indicators from waterlevel measurements"
readme = "README.md"
keywords = ["kenmerkendewaarden"]
license = { text = "GPLv3" }
requires-python = ">=3.9"
dependencies = [
#numpy>=1.25.0 supports wide range of python versions
"numpy>=1.25.0",
#pandas>=2.1.4 supports diff on timedeltas
"pandas>=2.1.4",
#matplotlib>=3.5.2 resolved "ValueError: Multi-dimensional indexing" in hatyan.plot_timeseries()
"matplotlib>=3.5.2",
#netcdf4>=1.5.4 pip install succeeds in py39
"netcdf4>=1.5.4",
#xarray>=2023.4.0 works with pandas<2.0.0 for resampling, only available for py39
"xarray>=2023.4.0",
#rws-ddlpy>=0.6.0 returns correct measurements_amount dataframe
"rws-ddlpy>=0.6.0",
#hatyan>=2.9.0 has different datetime/tzone handling in astrog
"hatyan>=2.9.0",
#statsmodels>=0.13.2 has support for pandas 2.0.0
"statsmodels>=0.13.2",
#pyproj>=3.1.0 pip installable in py38
"pyproj>=3.1.0",
#pooch>=1.1.0 has attribute retrieve
"pooch>=1.1.0",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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-research/kenmerkendewaarden"
Code = "https://github.com/deltares-research/kenmerkendewaarden"
Issues = "https://github.com/deltares-research/kenmerkendewaarden/issues"
[project.optional-dependencies]
dev = [
"bump2version>=0.5.11",
"flake8",
"pytest",
"pytest-cov",
"twine",
"build",
"black",
]
docs = [
"sphinx>=1.8.1",
"sphinx_mdinclude",
"nbsphinx",
"pydata-sphinx-theme",
#"pandoc", # installed with choco on github
]
examples = [
"jupyter",
"notebook",
]
[tool.setuptools]
packages = ["kenmerkendewaarden"]
[tool.pytest.ini_options]
console_output_style = "count"
testpaths = ["tests"]
addopts = "-v --tb=short --durations=0"
filterwarnings = ["ignore::UserWarning"]
markers = [
"unittest: mark a test as unittest. Used for testing single methods",
"systemtest: mark a test as systemtest. Used for testing at a higher level, verifying a given input returns the expected output",
"acceptance: mark a test as acceptance. Used for non-functional requirements and data that needs to be human-verified",
]