-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 865 Bytes
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
[project]
name = "watcloud-utils"
description = "Utility package for WATcloud"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
dependencies = [
"prometheus-fastapi-instrumentator>=7.0.0",
"sentry-sdk[fastapi]>=2.13.0",
"typer>=0.12.4",
"PyYAML>=6.0.2",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/watonomous/watcloud-utils"
[project.optional-dependencies]
testing = [
"pytest>=8.3.2",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
write_to = "watcloud_utils/_version.py"
write_template = "__version__ = '{}'"