-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
71 lines (64 loc) · 1.71 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "yadg"
authors = [
{name = "Peter Kraus", email = "[email protected]"},
{name = "Nicolas Vetsch"},
{name = "Carla Terboven"},
]
maintainers = [
{name = "Peter Kraus", email = "[email protected]"},
]
description = "yet another datagram"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
requires-python = ">= 3.10"
dependencies = [
"numpy >= 1.20",
"pint >= 0.24.1",
"pyyaml",
"uncertainties",
"striprtf",
"tzlocal",
"packaging",
"python-dateutil",
"openpyxl >= 3.0.0",
"olefile >= 0.47",
"h5netcdf >= 1.0",
"pandas >= 2.0",
"babel >= 2.15",
"xarray >= 2024.10.0",
"dgbowl-schemas >= 121",
]
[project.optional-dependencies]
testing = ["pytest"]
docs = [
"sphinx ~= 7.2",
"sphinx-rtd-theme ~= 1.3.0",
"autodoc-pydantic ~= 2.1.0",
]
[project.urls]
Documentation = "https://dgbowl.github.io/yadg/main"
Issues = "https://github.com/dgbowl/yadg/issues"
Repository = "https://github.com/dgbowl/yadg/"
[project.scripts]
yadg = "yadg:run_with_arguments"
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.dev{ccount}"
dirty_template = "{tag}.dev{ccount}"
[tool.ruff]
[tool.pytest.ini_options]
log_cli = false
log_cli_level = "DEBUG"