-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
41 lines (38 loc) · 948 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
39
40
41
# coding=utf-8
from setuptools import find_packages, setup
base_requires = [
'Click<7.0',
'ansible==3.0.0',
'backports.shutil_get_terminal_size',
'semver',
'junit_xml',
'structlog',
'boto3'
]
test_requires = base_requires + [
'mock',
'coverage',
'pep8<=1.7.0',
'yapf==0.14.0'
]
setup(
name='origin-ci-tool',
version='0.1.0',
url='https://www.github.com/openshift/origin-ci-tool',
maintainer='Steve Kuznetsov',
maintainer_email='[email protected]',
packages=find_packages(exclude=['tests']),
include_package_data=True,
dependency_links=[
'git+https://github.com/stevekuznetsov/ansible.git@skuznets/oct-release#egg=ansible-3.0.0'
],
install_requires=base_requires,
tests_require=test_requires,
extras_require={
'development': test_requires
},
entry_points='''
[console_scripts]
oct=oct.oct:oct_command
''',
)