forked from red-hat-storage/ocs-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (59 loc) · 1.77 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
# -*- 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='0.1',
description='OCS CI tests that run in jenkins and standalone mode using aws provider',
author='OCS QE',
author_email='[email protected]',
license='MIT',
install_requires=[
'apache-libcloud',
'docopt==0.6.2',
'gevent==1.4.0',
'reportportal-client @ git+https://github.com/reportportal/client-Python.git@master',
'requests==2.21.0',
'paramiko==2.4.2',
'pyyaml>=4.2b1',
'jinja2==2.10.1',
'kubernetes',
'openshift',
'boto3',
'munch',
'pytest',
'pytest-reportportal==1.0.5',
'pytest-logger',
'dataclasses', # For compatibility with python 3.6
'pytest-html',
'bs4',
'gspread',
'oauth2client',
'pytest_marker_bugzilla>=0.9.3',
'pyvmomi',
'pyhcl',
# issue opened for botocore
# https://github.com/boto/botocore/issues/1872
# till above issue fixed, manually pointing python-dateutil to 2.8.0
'python-dateutil==2.8.0',
'pytest-ordering',
'funcy',
'semantic-version',
'jsonschema>=3.2.0',
],
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',
'aws-cleanup=ocs_ci.cleanup.aws.cleanup:aws_cleanup'
],
},
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=['ez_setup']),
)