-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (44 loc) · 1.49 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
[tool]
[tool.poetry]
name = "new-pykube"
version = "24.12.1"
description = "Python client library for Kubernetes"
license = "Apache"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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 :: Only",
]
authors = ["Jonathan Mayer <[email protected]>", "Jan Taeuber <[email protected]>", "Johannes Thiem <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/caas-team/new-pykube"
packages = [{ include = "pykube" }]
[tool.poetry.dependencies]
python = ">=3.9,<4"
google-auth = {optional = true, version = "*"}
jsonpath-ng = {optional = true, version = "*"}
pyyaml = "*"
requests = ">=2.12"
urllib3 = ">=1.26.9"
requests-oauthlib = {version = "^1.3.0", optional = true}
[tool.poetry.extras]
gcp = ["google-auth", "jsonpath-ng"]
oidc = ["requests-oauthlib"]
[tool.poetry.group.dev.dependencies]
pytest-html = "^4.1.1"
pytest-cov = "^2.8.1"
responses = "^0.10.9"
sphinx = "^2.3.1"
sphinx-rtd-theme = "^0.4.3"
sphinx-autodoc-annotation = "^1.0-1"
pre-commit = ">=4.0.1"
pytest-mock = "^3.1.1"