forked from red-hat-storage/ocs-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
116 lines (114 loc) · 3.88 KB
/
setup.py
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
113
114
115
116
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name="ocs-ci",
version="4.16.0",
description="OCS CI tests that run in jenkins and standalone mode using aws provider",
author="OCS QE",
author_email="[email protected]",
license="MIT",
python_requires=">3.8.1",
install_requires=[
"apache-libcloud==3.1.0",
"cryptography==42.0.4",
"docopt==0.6.2",
"gevent==23.9.1",
"reportportal-client==3.2.3",
"requests==2.31.0",
"paramiko==3.4.0",
"pyyaml>=4.2b1",
"jinja2==3.1.3",
"openshift==0.11.2",
"boto3==1.24.96",
"munch==2.5.0",
"pytest==6.2.5",
"pytest-logger==0.5.1",
"pytest-html==3.1.1",
"pytest-metadata==1.11.0",
"bs4==0.0.1",
"gspread==3.6.0",
"google-auth-oauthlib==0.7.1",
"oauth2client==4.1.3",
"pytest_marker_bugzilla>=0.9.3",
"pyvmomi==7.0",
"python-hcl2==3.0.1",
"python-dateutil==2.8.2",
"pytest-order==1.2.0",
"funcy==1.14",
"semantic-version==2.8.5",
"jsonschema>=3.2.0",
"google-cloud-storage==2.6.0",
"google-auth==2.14.1",
"elasticsearch==8.11.1",
"numpy==1.22.0",
"pandas==1.5.2",
"tabulate==0.9.0",
"python-ipmi==0.4.2",
"scipy==1.10.0",
"PrettyTable==0.7.2",
"azure-common==1.1.25",
"azure-mgmt-compute==12.0.0",
"azure-mgmt-network==10.2.0",
"azure-mgmt-resource==10.0.0",
"azure-storage-blob==12.19.0",
"msrestazure==0.6.3",
"python-novaclient==17.1.0",
"python-cinderclient==7.1.0",
"keystoneauth1==4.2.0",
"range-key-dict==1.1.0",
"GitPython==3.1.41",
"selenium==3.141.0",
"webdriver-manager==4.0.0",
# greenlet 1.0.0 is broken on ppc64le
# https://github.com/python-greenlet/greenlet/issues/230
# by default program attempting to load an x86_64-only library from a native arm64 process
# Beginning with gevent 20.12.0, 64-bit ARM binaries are distributed on PyPI for aarch64 manylinux2014
# compatible systems. Resolves problem for m1 Mac chips
"greenlet==2.0.2",
"ovirt-engine-sdk-python==4.4.11",
"junitparser==3.1.0",
"flaky==3.7.0",
"ocp-network-split==0.3.0",
"pyopenssl==24.0.0",
"pyparsing==2.4.7",
"mysql-connector-python==8.0.27",
"pytest-repeat==0.9.3",
"pexpect>=4.8.0",
# googleapis-common-protos 1.56.2 needs to have protobuf<4.0.0>=3.15.0
"protobuf==4.21.7",
"ping3==4.0.3",
"psutil==5.9.0",
"azure-identity==1.15.0",
"azure-mgmt-storage==21.0.0",
"fauxfactory==3.1.0",
"google-api-core==2.11.0",
"google-api-python-client==2.105.0",
"google-auth-httplib2==0.1.1",
"google-cloud-core==2.3.2",
"google-crc32c==1.5.0",
"google-resumable-media==2.4.1",
"googleapis-common-protos==1.59.0",
"urllib3==1.26.18",
"psycopg2-binary==2.9.9",
],
entry_points={
"console_scripts": [
"run-ci=ocs_ci.framework.main:main",
"report-version=ocs_ci.ocs.version:main",
"ci-cleanup=ocs_ci.cleanup.aws.cleanup:cluster_cleanup",
"ci-pause=ocs_ci.pause.pause:cluster_pause",
"aws-cleanup=ocs_ci.cleanup.aws.cleanup:aws_cleanup",
"vsphere-cleanup=ocs_ci.cleanup.vsphere.cleanup:vsphere_cleanup",
"ocs-build=ocs_ci.utility.ocs_build:main",
"get-ssl-cert=ocs_ci.utility.ssl_certs:main",
],
},
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=["ez_setup"]),
)