-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
86 lines (78 loc) · 2.2 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
[project]
name = "tum_esm_utils"
version = "2.4.0"
description = "Python utilities by the Professorship of Environmental Sensing and Modeling at the Technical University of Munich"
authors = [{ name = "Moritz Makowski", email = "[email protected]" }]
dependencies = [
"filelock>=3.13.4",
"requests>=2.31.0",
"psutil>=5.9.8",
"pydantic>=2.7.0",
"pytz>=2024.1",
"tailwind-colors>=1.3.0",
]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = { text = "GPL-3.0" }
classifiers = [
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = [
"tum",
"utils",
"utilities",
"environmental",
"sensing",
"modeling",
"python",
"library",
"utilities",
"pydoc-markdown",
]
[project.urls]
repository = "https://github.com/tum-esm/utils"
documentation = "https://tum-esm-utils.netlify.app"
[project.optional-dependencies]
dev = [
"pytest>=8.1.1",
"pydocstyle>=6.3.0",
"yapf>=0.40.2",
"mypy>=1.13.0",
"pydoc-markdown>=4.8.2",
"types-psutil>=5.9.5.20240316",
"types-requests>=2.31.0.20240406",
"types-pytz>=2024.1.0.20240203",
]
plotting = ["matplotlib>=3.9.2", "numpy>=2.0.2"]
polars = ["polars>=1.4.1"]
all = ["matplotlib>=3.9.2", "numpy>=2.0.2", "polars>=1.4.1"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
filterwarnings = ["ignore::pytest.PytestUnhandledThreadExceptionWarning"]
[tool.mypy]
strict = true
implicit_reexport = true
plugins = ["pydantic.mypy"]
[tool.yapf]
based_on_style = "facebook"
coalesce_brackets = true
split_before_dict_set_generator = true
each_dict_entry_on_separate_line = false
spaces_around_subscript_colon = true
[tool.pdm]
distribution = true
build.includes = ["tum_esm_utils"]
build.excludes = [
"tests",
"tum_esm_utils/opus_file_validator/*.mod",
"tum_esm_utils/opus_file_validator/*.lock",
"tum_esm_utils/opus_file_validator/*.txt",
"tum_esm_utils/opus_file_validator/opus_file_validator",
]