-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (66 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (66 loc) · 1.65 KB
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
[project]
name = "kdantic"
description = "KDantic - Create Kubernetes CRD manifests using Pydantic models"
requires-python = ">=3.12"
dependencies = [
"pyyaml>=6.0.2",
"pydantic",
"pydantic-settings",
"rich"
]
dynamic = ["version"]
license = { text = "Apache-2.0" }
readme = { file = "README.md", content-type = "text/x-markdown" }
maintainers = [
{ name = "Nikolaos Deligeorgis", email = "Nikolaos.Deligeorgis@sony.com" },
]
authors = [
{ name = "Nikolaos Deligeorgis", email = "Nikolaos.Deligeorgis@sony.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Typing :: Typed",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
]
[project.scripts]
kdantic = "kdantic.cli:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.build]
package-dir = "src"
[tool.pdm.resolution]
allow-prereleases = false
[tool.pdm.version]
source = "scm"
write_to = "kdantic/__version__.py"
write_template = "__version__ = '{}'"
tag_regex = "^(.+)$"
[dependency-groups]
build = [
"toml",
"pdm-backend",
"packaging",
]
dev = [
"ipython",
"ruff",
]
test = [
"coverage",
"pytest",
"pytest-cov",
]
[tool.uv]
cache-keys = [{ file = "**/*.toml" }]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]