-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.34 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
[project]
name = "lightkube-models"
dynamic = ["version"]
description = "Models and Resources for lightkube module"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Giuseppe Tribulato", email = "gtsystem@gmail.com" }
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "https://github.com/gtsystem/lightkube-models"
Repository = "https://github.com/gtsystem/lightkube-models"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.build]
includes = [
"src/lightkube/models",
"src/lightkube/resources",
]
[tool.pdm.version]
source = "file"
path = "src/lightkube/models/__init__.py"
[dependency-groups]
compile = [
"httpx>=0.28.1",
"jinja2>=3.1.6",
"markdown-include>=0.8.1",
"mkautodoc>=0.2.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.1",
"mkdocs-material-extensions>=1.3.1",
"ruamel.yaml>=0.18.0",
"typer>=0.15.1",
]