forked from red-hat-data-services/ods-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 972 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
33
34
35
36
37
# -*- 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="ods-ci",
version="0.1",
description="Red Hat Open Data Science QE Tier Tests",
author="ODS 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"
],
zip_safe=True,
include_package_data=True,
packages=find_packages(exclude=["ez_setup"]),
)