-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
90 lines (76 loc) · 2.37 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[tool.coverage.run]
omit = ["openshift_cli_installer/tests/*", "openshift_cli_installer/cli.py"]
[tool.coverage.report]
fail_under = 20 # TODO: Need to be at least 60
skip_empty = true
[tool.coverage.html]
directory = ".tests_coverage"
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
[tool.poetry]
name = "openshift-cli-installer"
version = "0.0.0"
description = "CLI to install/uninstall Openshift clusters."
readme = "README.md"
repository = "https://github.com/RedHatQE/openshift-cli-installer"
authors = ["Meni Yakove <[email protected]>", "Ruth Netser <[email protected]>"]
license = "Apache-2.0"
packages = [{ include = "openshift_cli_installer" }]
include = [{ path = "manifests/*" }]
homepage = "https://github.com/RedHatQE/openshift-cli-installer"
documentation = "https://github.com/RedHatQE/openshift-cli-installer/blob/main/README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
openshift-cli-installer = "openshift_cli_installer.cli:main"
[tool.poetry.dependencies]
python = "^3.9"
jinja2 = "^3.1.2"
shortuuid = "^1.0.11"
click = "^8.1.4"
rosa-python-client = ">=1.0.36"
openshift-cluster-management-python-wrapper = ">=1.0.54"
python-terraform = "^0.10.1"
semver = "^3.0.1"
openshift-python-utilities = ">=5.0.0"
pyaml-env = "^1.2.1"
google-cloud-compute = "^1.14.1"
redhat-qe-cloud-tools = ">=1.0.46"
python-simple-logger = ">=1.0.7"
ruff = "^0.9.0"
timeout-sampler = ">=0.0.1"
openshift-python-wrapper = ">=11.0.14"
pytest-testconfig = "^0.2.0"
beautifulsoup4 = "^4.12.3"
requests = "^2.31.0"
pyhelper-utils = "^1.0.0"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipython = "*"
[tool.poetry.group.tests.dependencies]
pytest = "^8.0.0"
pytest-mock = "^3.12.0"
pytest-cov = ">=5.0.0"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"
[tool.poetry-dynamic-versioning.substitution]
files = ["VERSION"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"