forked from red-hat-storage/cephci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.13 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
# -*- coding: utf-8 -*-
try:
from setuptools import find_packages, setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages, setup
setup(
name="cephci",
version="0.1",
description="Ceph CI tests that run in jenkins using openstack provider",
author="Vasu Kulkarni",
author_email="vasu@redhat.com",
install_requires=[
"apache-libcloud>=3.3.0",
"cryptography",
"docopt",
"gevent",
"greenlet",
"htmllistparse",
"ibm-cloud-sdk-core==3.15.0 ; python_version<'3.7'",
"ibm-cloud-sdk-core ; python_version>='3.7'",
"ibm-cos-sdk",
"ibm-cos-sdk-core",
"ibm-cos-sdk-s3transfer",
"ibm-vpc==0.10.0",
"ibm-cloud-networking-services",
"jinja_markdown",
"jinja2",
"junitparser",
"paramiko",
"plotly",
"pyyaml",
"reportportal-client==5.2.5",
"requests",
"softlayer",
"python-ipmi",
],
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=["ez_setup"]),
)