-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (78 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
93 lines (78 loc) · 2.27 KB
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
91
92
93
[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.coverage.run]
omit = ["openshift_cli_installer/tests/*", "openshift_cli_installer/cli.py"]
[tool.coverage.report]
fail_under = 20
skip_empty = true
[tool.coverage.html]
directory = ".tests_coverage"
[tool.uv]
default-groups = ["dev", "tests"]
[tool.hatch.build.targets.sdist]
include = ["openshift_cli_installer", "manifests/*"]
[tool.hatch.build.targets.wheel]
include = ["openshift_cli_installer", "manifests/*"]
[project]
name = "openshift-cli-installer"
version = "3.0.18"
description = "CLI to install/uninstall Openshift clusters."
requires-python = ">=3.10,<4"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"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.14",
"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>=2",
]
[[project.authors]]
name = "Meni Yakove"
email = "myakove@gmail.com"
[[project.authors]]
name = "Ruth Netser"
email = "rnetser@gmail.com"
[project.urls]
Homepage = "https://github.com/RedHatQE/openshift-cli-installer"
Repository = "https://github.com/RedHatQE/openshift-cli-installer"
Documentation = "https://github.com/RedHatQE/openshift-cli-installer/blob/main/README.md"
[project.scripts]
openshift-cli-installer = "openshift_cli_installer.cli:main"
[dependency-groups]
dev = ["ipdb>=0.13.13", "ipython"]
tests = ["pytest>=9.0.0", "pytest-mock>=3.12.0", "pytest-cov>=5.0.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"