-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.75 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
[project]
name = "openshift-cluster-management-python-wrapper"
version = "2.0.13"
description = "Wrapper around https://github.com/openshift/openshift-cluster-management-python-client"
requires-python = "~=3.9"
readme = "README.md"
license = "Apache-2.0"
keywords = [ "Openshift", "OCM" ]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"colorlog>=6.7.0,<7",
"python-simple-logger>=1.0.5",
"openshift-cluster-management-python-client>=1.0.23",
"openshift-python-wrapper>=11.0.14",
"requests>=2.31.0,<3",
"pyyaml>=6.0.1,<7",
"openshift-python-utilities>=5.0.0",
"importlib>=1.0.4,<2",
"redhat-qe-cloud-tools>=1.0.10",
"timeout-sampler>=0.0.2",
"python-benedict==0.34.1",
"rosa-python-client"
]
[[project.authors]]
name = "Meni Yakove"
email = "myakove@gmail.com"
[[project.authors]]
name = "Ruth Netser"
email = "rnetser@gmail.com"
[project.urls]
Homepage = "https://github.com/RedHatQE/openshift-cluster-management-python-wrapper"
Documentation = "https://github.com/RedHatQE/openshift-cluster-management-python-wrapper/blob/main/README.md"
Download = "https://pypi.org/project/openshift-cluster-management-python-wrapper/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-cluster-management-python-wrapper/issues"
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
[tool.hatch.build.targets.sdist]
include = [ "ocm_python_wrapper" ]
[tool.hatch.build.targets.wheel]
include = [ "ocm_python_wrapper" ]
[dependency-groups]
dev = [ "ipdb>=0.13.13,<0.14", "ipython" ]
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"