generated from RedHatQE/python-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
65 lines (58 loc) · 1.43 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
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.mypy]
exclude = ["utilities/plugins/tgis_grpc/"]
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
ignore_missing_imports = true
[tool.uv]
dev-dependencies = [
"ipdb>=0.13.13",
"ipython>=8.12.3",
]
[tool.uv.sources]
[project]
requires-python = ">=3.9"
name = "opendatahub-tests"
version = "0.1.0"
description = "Tests repository for Open Data Hub (ODH)"
authors = []
license = {text = "Apache License (2.0)"}
readme = "README.md"
keywords = ["Openshift", "RHOAI", "ODH"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"ipython>=8.18.1",
"openshift-python-utilities>=5.0.71",
"openshift-python-wrapper>=11.0.6",
"pytest-dependency>=0.6.0",
"pytest-progress",
"python-simple-logger",
"pyyaml",
"tenacity",
"types-requests>=2.32.0.20241016",
"requests",
"pytest-asyncio",
"syrupy",
"protobuf",
"grpcio-reflection",
"portforward>=0.7.1",
"pytest-testconfig>=0.2.0",
"pytest-jira>=0.3.21",
"pygithub>=2.5.0",
]
[project.urls]
homepage = "https://github.com/opendatahub-io/opendatahub-tests"