-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.92 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
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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pytest-helm-charts"
version = "1.3.2"
description = "A plugin to provide different types and configs of Kubernetes clusters that can be used for testing."
authors = ["Łukasz Piątkowski <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/giantswarm/pytest-helm-charts"
readme = "README.md"
keywords = ["kubernetes", "helm", "chart"]
include = ["CHANGELOG.md", "DCO"]
packages = [{ include = "pytest_helm_charts/**/*.py" }]
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'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 :: Implementation :: CPython',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Apache Software License',
]
[tool.poetry.plugins] # Optional super table
[tool.poetry.plugins."pytest11"]
"helm-charts" = "pytest_helm_charts.plugin"
[tool.poetry.dependencies]
python = "^3.10"
pytest = "^8.0.0"
pykube-ng = ">=23.6,<24"
mkdocs = { version = "^1.2.3", optional = true }
mkapi = { version = "^1.0.14", optional = true }
Deprecated = "^1.2.13"
[tool.poetry.dev-dependencies]
autopep8 = "^2.0.0"
tox = "<5"
pytest-mock = "^3.6.1"
flake8 = "^7.0.0"
mypy = "^1.0"
pytest-cov = "^6.0.0"
bandit = "^1.7.4"
black = "^24.0.0"
pre-commit = "^4.0.0"
[tool.poetry.extras]
docs = ["mkdocs", "mkapi"]
[tool.black]
line-length = 120
target-version = ['py310', 'py311', 'py312', 'py313']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''