-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (36 loc) · 1.01 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
# -*- 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="rhoda-ci",
version="0.1",
description="Red Hat OpenShift Database Access Operator QE Tier Tests",
author="rhoda-ci",
author_email="[email protected]",
install_requires=[
"reportportal-client",
"robotframework>=4",
"robotframework-debuglibrary",
"robotframework-requests",
"robotframework-seleniumlibrary",
"robotframework-jupyterlibrary>=0.3.1",
"robotframework-OpenShiftCLI==1.0.1",
"ipython",
"pytest",
"pytest-logger",
"pyyaml",
"pygments",
"requests",
"robotframework-requests",
"escapism",
"semver>=2,<3",
"robotframework-openshift==1.0.0",
],
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=["ez_setup"]),
)