-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
88 lines (77 loc) · 1.95 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
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.ruff.lint.isort]
order-by-type = true
known-third-party = ["ocp_resources", "ocp_utilities", "timeout_sampler", "pyhelper_utils"]
[tool.mypy]
warn_unused_configs = true
warn_redundant_casts = true
[[tool.mypy.overrides]]
module = "libs.*"
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
strict_equality = true
strict_concatenate = true
[project]
name = "openshift-virtualization-tests-4.18"
requires-python = "==3.12.*"
version = "4.18"
description = "Tests for Openshift Virtualization"
authors = [{ "name" = "openshift-virtualization-tests" }]
dependencies = [
"bcrypt>=4.2.0",
"bitmath>=1.3.3.1",
"bitwarden-sdk>=1.0.0",
"bs4>=0.0.2",
"click>=8.1.7",
"colorlog>=6.9.0",
"deepdiff>=8.0.1",
"dictdiffer>=0.9.0",
"docker>=7.1.0",
"importlib-metadata>=8.5.0",
"importlib-resources>=6.4.5",
"jinja2>=3.1.4",
"jira>=3.8.0",
"jsons>=1.6.3",
"kubernetes>=31.0.0",
"netaddr>=1.3.0",
"openshift-python-utilities>=6.0.0",
"openstacksdk>=4.1.0",
"pexpect>=4.9.0",
"podman>=5.2.0",
"pyhelper-utils>=1.0.1",
"pytest>=8.3.3",
"pytest-benchmark>=5.1.0",
"pytest-dependency>=0.6.0",
"pytest-jira>=0.3.21",
"pytest-order>=1.3.0",
"pytest-progress>=1.3.0",
"pytest-testconfig>=0.2.0",
"python-benedict>=0.34.0",
"python-rrmngmnt>=0.1.32",
"python-utility-scripts>=1.0.1",
"pyvmomi>=8.0.3.0.1",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"sh>=2.1.0",
"shortuuid>=1.0.13",
"sqlalchemy>=2.0.36",
"timeout-sampler>=1.0.1",
"urllib3>=2.2.3",
"xmltodict>=0.14.2",
"openshift-python-wrapper>=11.0.10",
]
[tool.hatch.build.targets.wheel]
packages = ["*"]
[tool.uv]
dev-dependencies = ["ipdb>=0.13.13", "ipython>=8.12.3"]
[tool.uv.sources]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"