forked from red-hat-storage/ocs-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 895 Bytes
/
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
# -*- 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='Vasu Kulkarni',
author_email='[email protected]',
install_requires=[
'apache-libcloud',
'docopt==0.6.2',
'gevent==1.4.0',
'reportportal-client==3.2.0',
'requests==2.21.0',
'paramiko==2.4.2',
'pyyaml>=4.2b1',
'jinja2==2.10.1',
'kubernetes<9.0.0,>=8.0.0', # to satisfy openshift package requirement
'openshift',
'boto3',
'munch',
],
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=['ez_setup']),
)