forked from RedHatQE/openshift-python-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.59 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
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "openshift-python-utilities"
version = "0.0.0"
description = "A utilities repository for https://github.com/RedHatQE/openshift-python-wrapper"
authors = ["Meni Yakove <[email protected]>", "Ruth Netser <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
packages = [{ include = "ocp_utilities" }]
homepage = "https://github.com/RedHatQE/openshift-python-utilities"
documentation = "https://github.com/RedHatQE/openshift-python-utilities/blob/main/README.md"
keywords = ["Openshift", "ocp"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry-dynamic-versioning.substitution]
files = ["VERSION"]
[tool.poetry.urls]
Download = "https://pypi.org/project/openshift-python-utilities/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-utilities/issues"
[tool.poetry.dependencies]
python = "^3.8"
colorlog = "^6.7.0"
pyyaml = "^6.0.1"
openshift-python-wrapper-data-collector = ">=1.0.4"
python-simple-logger = ">=1.0.5"
timeout-sampler = ">=0.0.17"
openshift-python-wrapper = ">=10.0.4"
beautifulsoup4 = "^4.12.3"
requests = "^2.31.0"
semver = "^3.0.2"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipython = "*"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"