-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (37 loc) · 1015 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
38
# -*- 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="ocp4-mco-ci",
version="0.1.0",
description="OCP4 MCO CI that setup DR using AWS",
author="OCS Eng",
author_email="[email protected]",
license="",
install_requires=[
"pyyaml>=4.2b1",
"bs4==0.0.1",
"jinja2==3.0.3",
"openshift==0.11.2",
"requests==2.23.0",
"schedule==1.2.1",
"bs4==0.0.1",
"semantic-version==2.8.5",
"boto3~=1.17.78",
"botocore<1.21.0,>=1.20.112",
"urllib3==1.25.11"
],
entry_points={
"console_scripts": [
"deploy-ocp=src.framework.deploy_ocp.main:main",
"cleanup-ocp=src.cleanup.ocp:cluster_cleanup",
],
},
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=["ez_setup"]),
)