-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.8 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
[project]
name = "openshift-python-utilities"
version = "6.0.7"
description = "A utilities repository for https://github.com/RedHatQE/openshift-python-wrapper"
requires-python = "~=3.9"
readme = "README.md"
license = "Apache-2.0"
keywords = [ "Openshift", "ocp" ]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"colorlog>=6.7.0,<7",
"pyyaml>=6.0.1,<7",
"openshift-python-wrapper-data-collector>=1.0.4",
"python-simple-logger>=1.0.5",
"timeout-sampler>=0.0.17",
"openshift-python-wrapper",
"beautifulsoup4>=4.12.3,<5",
"requests>=2.31.0,<3",
"semver>=3.0.2,<4",
"pyhelper-utils>=0.0.22",
"deprecation>=2.1.0,<3"
]
[[project.authors]]
name = "Meni Yakove"
email = "[email protected]"
[[project.authors]]
name = "Ruth Netser"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/RedHatQE/openshift-python-utilities"
Documentation = "https://github.com/RedHatQE/openshift-python-utilities/blob/main/README.md"
Download = "https://pypi.org/project/openshift-python-utilities/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-utilities/issues"
[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.hatch.build.targets.sdist]
include = [ "ocp_utilities" ]
[tool.hatch.build.targets.wheel]
include = [ "ocp_utilities" ]
[dependency-groups]
dev = [ "ipdb>=0.13.13,<0.14", "ipython" ]
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"