-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (72 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
86 lines (72 loc) · 2.03 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
[tool.pytest.ini_options]
markers = [
"incremental: Mark tests as incremental",
"kubevirt: Mark tests as kubevirt tests"
]
addopts = [
"--pdbcls=IPython.terminal.debugger:TerminalPdb",
"--cov-config=pyproject.toml",
"--cov-report=html",
"--cov-report=term",
"--cov=ocp_scale_utilities.logger",
"--cov=ocp_scale_utilities.monitoring",
"--cov=ocp_scale_utilities.threaded.scale",
"--cov=ocp_scale_utilities.threaded.utils",
]
[tool.coverage.run]
omit = [
"tests/*",
]
[tool.coverage.report]
fail_under = 90
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]
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
[tool.hatch.build.targets.wheel]
packages = [ "ocp_scale_utilities" ]
[tool.uv]
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.12.3" ]
[project]
name = "openshift-python-scale-utilities"
requires-python = ">=3.12.0"
version = "0.1.1.5"
description = "OpenShift Python Scale Utilities"
readme = "README.md"
license = "Apache-2.0"
keywords = [ "Openshift", "Kubevirt", "Openshift Virtualization" ]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"openshift-python-wrapper>=11.0.44",
"openshift-python-utilities>=6.0.0",
"pytest>=8.3.3",
"pytest-order>=1.3.0",
"python-simple-logger~=2.0.9",
"timeout-sampler>=1.0.1",
]
[[project.authors]]
name = "Sarah Bennert"
email = "sarahbx@redhat.com"
[[project.maintainers]]
name = "Sarah Bennert"
email = "sarahbx@redhat.com"
[project.urls]
homepage = "https://github.com/redhat-vmeperf/openshift-python-scale-utilities"
Download = "https://pypi.org/project/openshift-python-scale-utilities/"
"Bug Tracker" = "https://github.com/redhat-vmeperf/openshift-python-scale-utilities/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"