-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (104 loc) · 2.54 KB
/
pyproject.toml
File metadata and controls
111 lines (104 loc) · 2.54 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kubernetes_asyncio"
version = "35.0.0+snapshot"
description = "Kubernetes Asynchronous Python Client"
authors = [
{ name = "Tomasz Prus", email = "tomasz.prus@gmail.com" }
]
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"certifi>=14.05.14",
"six>=1.9.0",
"python-dateutil>=2.5.3",
"urllib3>=1.24.2",
"pyyaml>=3.12",
"aiohttp>=3.9.0,<4.0.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-xdist>=3.8.0",
"ruff>=0.14.14",
]
[tool.ruff]
exclude = [
".git",
".venv",
"build",
"dist",
"venv",
"doc",
"kubernetes_asyncio/client/",
"kubernetes_asyncio/test/",
"scripts/"
]
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.hatch.build.targets.sdist]
include = [
"kubernetes_asyncio/client",
"kubernetes_asyncio/config",
"kubernetes_asyncio/dynamic",
"kubernetes_asyncio/leaderelection",
"kubernetes_asyncio/stream",
"kubernetes_asyncio/utils",
"kubernetes_asyncio/watch",
"kubernetes_asyncio/__init__.py",
"kubernetes_asyncio/py.typed",
"pyproject.toml",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"README.md",
]
[tool.hatch.build.targets.wheel]
include = [
"kubernetes_asyncio/client",
"kubernetes_asyncio/config",
"kubernetes_asyncio/dynamic",
"kubernetes_asyncio/leaderelection",
"kubernetes_asyncio/stream",
"kubernetes_asyncio/utils",
"kubernetes_asyncio/watch",
"kubernetes_asyncio/__init__.py",
"kubernetes_asyncio/py.typed",
"pyproject.toml",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"README.md",
]