1
1
[tool .pytest .ini_options ]
2
2
markers = [
3
3
" incremental: Mark tests as incremental" ,
4
- " kubevirt: Mark tests as kubevirt tests" ,
4
+ " kubevirt: Mark tests as kubevirt tests"
5
5
]
6
6
addopts = [
7
7
" --pdbcls=IPython.terminal.debugger:TerminalPdb" ,
8
8
" --cov-config=pyproject.toml" ,
9
9
" --cov-report=html" ,
10
10
" --cov-report=term" ,
11
- " --cov=ocp_resources" ,
11
+ " --cov=ocp_resources"
12
12
]
13
13
14
14
[tool .coverage .run ]
15
- omit = [" tests/*" ]
15
+ omit = [ " tests/*" ]
16
16
17
17
[tool .coverage .report ]
18
18
skip_empty = true
@@ -26,31 +26,31 @@ line-length = 120
26
26
fix = true
27
27
output-format = " grouped"
28
28
29
- [tool .ruff .format ]
30
- exclude = [" .git" , " .venv" , " .mypy_cache" , " .tox" , " __pycache__" ]
29
+ [tool .ruff .format ]
30
+ exclude = [ " .git" , " .venv" , " .mypy_cache" , " .tox" , " __pycache__" ]
31
31
32
32
[tool .mypy ]
33
33
no_implicit_optional = true
34
34
show_error_codes = true
35
35
warn_unused_ignores = true
36
36
37
37
[tool .hatch .build .targets .wheel ]
38
- packages = [" ocp_resources" , " class_generator" ]
38
+ packages = [ " ocp_resources" , " class_generator" ]
39
39
40
40
[tool .uv ]
41
- dev-dependencies = [" ipdb>=0.13.13" , " ipython>=8.12.3" ]
41
+ dev-dependencies = [ " ipdb>=0.13.13" , " ipython>=8.12.3" ]
42
42
43
43
[project ]
44
44
requires-python = " >=3.9"
45
45
name = " openshift-python-wrapper"
46
- version = " 11.0.18 "
46
+ version = " 11.0.19 "
47
47
description = " Wrapper around https://github.com/kubernetes-client/python"
48
48
readme = " README.md"
49
49
license = " Apache-2.0"
50
- keywords = [" Openshift" , " Kubevirt" , " Openshift Virtualization" ]
50
+ keywords = [ " Openshift" , " Kubevirt" , " Openshift Virtualization" ]
51
51
classifiers = [
52
52
" Programming Language :: Python :: 3" ,
53
- " Operating System :: OS Independent" ,
53
+ " Operating System :: OS Independent"
54
54
]
55
55
dependencies = [
56
56
" click>=8.1.7" ,
@@ -70,34 +70,34 @@ dependencies = [
70
70
" ruff>=0.6.9" ,
71
71
" testcontainers>=4.9.0" ,
72
72
" timeout-sampler>=0.0.46" ,
73
- " xmltodict>=0.13.0" ,
73
+ " xmltodict>=0.13.0"
74
74
]
75
75
76
- [[project .authors ]]
77
- name = " Meni Yakove"
78
-
76
+ [[project .authors ]]
77
+ name = " Meni Yakove"
78
+
79
79
80
- [[project .authors ]]
81
- name = " Ruth Netser"
82
-
80
+ [[project .authors ]]
81
+ name = " Ruth Netser"
82
+
83
83
84
- [[project .maintainers ]]
85
- name = " Meni Yakove"
86
-
84
+ [[project .maintainers ]]
85
+ name = " Meni Yakove"
86
+
87
87
88
- [[project .maintainers ]]
89
- name = " Ruth Netser"
90
-
88
+ [[project .maintainers ]]
89
+ name = " Ruth Netser"
90
+
91
91
92
- [project .urls ]
93
- homepage = " https://github.com/RedHatQE/openshift-python-wrapper"
94
- documentation = " https://openshift-python-wrapper.readthedocs.io/en/latest/"
95
- Download = " https://pypi.org/project/openshift-python-wrapper/"
96
- "Bug Tracker" = " https://github.com/RedHatQE/openshift-python-wrapper/issues"
92
+ [project .urls ]
93
+ homepage = " https://github.com/RedHatQE/openshift-python-wrapper"
94
+ documentation = " https://openshift-python-wrapper.readthedocs.io/en/latest/"
95
+ Download = " https://pypi.org/project/openshift-python-wrapper/"
96
+ "Bug Tracker" = " https://github.com/RedHatQE/openshift-python-wrapper/issues"
97
97
98
- [project .scripts ]
99
- class-generator = " class_generator.class_generator:main"
98
+ [project .scripts ]
99
+ class-generator = " class_generator.class_generator:main"
100
100
101
101
[build-system ]
102
- requires = [" hatchling" ]
102
+ requires = [ " hatchling" ]
103
103
build-backend = " hatchling.build"
0 commit comments