-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
87 lines (73 loc) · 2.19 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
[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 = "redhat-qe-cloud-tools"
version = "0.0.0"
description = "Python utilities to manage cloud services, such as AWS."
authors = ["Meni Yakove <myakove@gmail.com>", "Ruth Netser <rnetser@gmail.com>"]
readme = "README.md"
repository = "https://github.com/RedHatQE/cloud-tools"
packages = [{ include = "clouds" }]
license = "Apache-2.0"
homepage = "https://github.com/RedHatQE/cloud-tools"
documentation = "https://github.com/RedHatQE/cloud-tools/blob/main/README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
cloud-cli = "clouds.cli.cli:cloud_cli"
[tool.poetry.dependencies]
python = "^3.9"
boto3 = "^1.34.110"
colorlog = "^6.7.0"
python-simple-logger = ">=1.0.5"
click = "^8.1.4"
configparser = "^7.0.0"
google-cloud-compute = "^1.14.1"
azure-mgmt-resource = "^23.0.1"
azure-identity = "^1.15.0"
azure-mgmt-redhatopenshift = "^2.0.0"
azure-mgmt-network = "^28.0.0"
azure-mgmt-subscription = "^3.1.1"
azure-core = "^1.30.1"
openshift-python-utilities = "^6.0.0"
pyhelper-utils = "^1.0.0"
[tool.poetry.urls]
Download = "https://pypi.org/project/redhat-qe-cloud-tools/"
"Bug Tracker" = "https://github.com/RedHatQE/cloud-tools/issues"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipython = "*"
[tool.coverage.run]
omit = ["clouds/tests/*"]
[tool.coverage.report]
fail_under = 20
skip_empty = true
[tool.coverage.html]
directory = ".tests_coverage"
[tool.poetry.group.tests.dependencies]
pytest-mock = "^3.14.0"
pytest = "^8.1.1"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning.substitution]
files = ["VERSION"]
[tool.poetry-dynamic-versioning]
enable = true
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"