-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (54 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
66 lines (54 loc) · 1.47 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
[project]
name = "rosa-python-client"
version = "2.0.16"
description = "Wrapper for rosa cli"
authors = [{ name = "Meni Yakove", email = "myakove@gmail.com" }]
requires-python = ">=3.10"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"redhat-qe-cloud-tools>=1.0.19",
"python-simple-logger>=1.0.5",
"python-benedict==0.36.0",
"openshift-cluster-management-python-wrapper",
]
[project.urls]
Homepage = "https://github.com/RedHatQE/rosa-python-client"
Documentation = "https://github.com/RedHatQE/rosa-python-client/blob/main/README.md"
Download = "https://pypi.org/project/rosa-python-client/"
"Bug Tracker" = "https://github.com/RedHatQE/rosa-python-client/issues"
[tool.coverage.run]
omit = ["rosa/tests/*"]
[dependency-groups]
dev = ["ipdb>=0.13.13,<0.14", "ipython"]
tests = [
"pytest>=9,<10",
"pytest-mock>=3.14.0,<4",
"pytest-cov>=7.0.0,<8",
"coverage>=7.6.0,<8",
]
[tool.coverage.report]
fail_under = 60
skip_empty = true
[tool.uv]
default-groups = ["dev", "tests"]
[tool.coverage.html]
directory = ".tests_coverage"
[tool.hatch.build.targets.sdist]
include = ["rosa"]
[tool.hatch.build.targets.wheel]
include = ["rosa"]
[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 = ["hatchling"]
build-backend = "hatchling.build"