-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (50 loc) · 1.54 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "policytester"
version = "0.1.4"
description = "Test kubernetes network policies"
readme = "README.md"
authors = [{ name = "Erik Brakkee", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls",
]
keywords = ["kubernetes", "network", "policy", "network policy"]
dependencies = [
"kubernetes >= 23.6.0",
"cerberus >= 1.3.4",
"pyyaml >= 6.0",
"attrdict >= 2.0.1",
'tomli; python_version < "3.11"',
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/ErikEngerd/policytester"
source = "https://github.com/ErikEngerd/policytester.git"
documentation = "https://github.com/ErikEngerd/policytester#readme"
[project.scripts]
policytester = "policytester.__main__:main"
[tool.bumpver]
current_version = "0.1.4"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"'
]
"src/policytester/__init__.py" = [
'__version__ = "{version}"'
]