-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (39 loc) · 1018 Bytes
/
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
[tool.poetry]
name = "pytest-kubernetes"
version = "0.5.0"
description = ""
authors = ["Michael Schilonka <michael@blueshoe.io>"]
readme = "README.md"
packages = [{include = "pytest_kubernetes"}]
repository = "https://github.com/Blueshoe/pytest-kubernetes"
classifiers = [
"Framework :: Pytest",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[tool.poetry.dependencies]
python = "^3.11.7"
pytest = "^8.3.0"
pyyaml = "^6.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.1.0"
mypy = "^1.0.0"
types-pyyaml = "^6.0.12.6"
ruff = "^0.6.5"
[tool.poetry.plugins.pytest11]
pytest-kubernetes = "pytest_kubernetes.plugin"
[tool.pytest.ini_options]
markers = [
"k8s: Kubernetes-based tests",
]
[tool.mypy]
warn_return_any = "True"
warn_unused_configs = "True"
exclude = """
tests
"""
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"