-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 765 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
[project]
name = "k8"
version = "29.0.9" # Note, should match kubernetes-client/python in refresh.sh
authors = [
{ name="Nick Cooper", email="nick@not.fun" },
]
description = "Kubernetes Python Models"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["OpenAPI", "OpenAPI-Generator", "Kubernetes"]
dependencies = [
"pydantic>=2",
"aenum>=3.1.11",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/nicknotfun/k8"
Issues = "https://github.com/nicknotfun/k8/issues"
[tool.setuptools.package-data]
k8 = ["py.typed"]