-
Notifications
You must be signed in to change notification settings - Fork 81
/
pyproject.toml
112 lines (99 loc) · 2.06 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = [
"/wrapanapi",
]
[tool.hatch.build.targets.wheel]
packages = [
"/wrapanapi",
]
[project.urls]
"Source" = "https://github.com/RedHatQE/wrapanapi"
[project]
name = "wrapanapi"
dynamic = ["version"]
readme = "README.rst"
license-files = { paths = ["LICENSE"] }
authors = [
{ name = "Peter Savage" },
]
maintainers = [
{ name = "Jitendra Yejare" },
{ name = "Mike Shriver" },
]
keywords = [
"distutils",
"hatch",
"hyperscaler",
"api",
"cloud",
]
requires-python = ">=3.9"
dependencies = [
"azure-storage-common>=1.0",
"azure<5.0.0",
"boto",
"boto3",
"botocore",
"cached_property",
"dateparser",
"fauxfactory",
"google-api-python-client",
"google-compute-engine",
"inflection",
"lxml",
"miq-version",
"oauth2client",
"openshift==0.3.4",
"ovirt-engine-sdk-python~=4.3",
"packaging",
"podman==5.0.0",
"py3winrm==0.0.1",
"python-cinderclient",
"python-glanceclient",
"python-heatclient",
"python-ironicclient",
"python-keystoneclient",
"python-neutronclient==6.12.0",
"python-novaclient==7.1.2",
"python-swiftclient",
"pyvcloud==23.0.4",
"pyvmomi>=6.5.0.2017.5.post1",
"redfish-client==0.1.0",
"requests",
"tzlocal",
"vspk==5.3.2",
"wait_for",
"websocket_client",
]
[project.optional-dependencies]
dev = [
"pre-commit",
]
test = [
"mock",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-variables",
"coveralls",
]
[tool.ruff]
line-length = 100
indent-width = 4
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.ruff.lint]
select = ["I"]
ignore = []