-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.79 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
[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-cluster-management-python-wrapper"
description = "Wrapper around https://github.com/openshift/openshift-cluster-management-python-client"
version = "1.0.140"
authors = ["Meni Yakove <[email protected]>", "Ruth Netser <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/RedHatQE/openshift-cluster-management-python-wrapper"
documentation = "https://github.com/RedHatQE/openshift-cluster-management-python-wrapper/blob/main/README.md"
keywords = ["Openshift", "OCM"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
packages = [{ include = "ocm_python_wrapper" }]
[tool.poetry.dependencies]
python = "^3.9"
colorlog = "^6.7.0"
python-simple-logger = ">=1.0.5"
openshift-cluster-management-python-client = ">=1.0.23"
openshift-python-wrapper = ">=11.0.14"
requests = "^2.31.0"
pyyaml = "^6.0.1"
openshift-python-utilities = ">=5.0.0"
importlib = "^1.0.4"
redhat-qe-cloud-tools = ">=1.0.10"
timeout-sampler = ">=0.0.2"
python-benedict = "==0.33.2"
rosa-python-client = "*"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipython = "*"
[tool.poetry.urls]
Download = "https://pypi.org/project/openshift-cluster-management-python-wrapper/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-cluster-management-python-wrapper/issues"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"
[tool.poetry-dynamic-versioning.substitution]
files = ["VERSION"]