forked from RedHatQE/wrapanapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (79 loc) · 1.57 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
[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",
]
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",
"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==19.1.2",
"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]
test = [
"mock",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-variables",
"coveralls",
]