-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
46 lines (44 loc) · 1.39 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
45
46
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
description = f.read()
setup(
name='cinch',
version='1.4.0',
description='Cinch continuous integration setup',
long_description=description,
url='https://github.com/RedHatQE/cinch',
author='RedHatQE',
license='GPLv3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3'
],
keywords='continuous integration, ci, jenkins',
packages=find_packages(exclude=('library', 'bin')),
include_package_data=True,
install_requires=[
'ansible>=2.4',
'plumbum>=1.6.0'
],
entry_points={
'console_scripts': [
'cinch=cinch.bin.entry_point:cinch',
'teardown=cinch.bin.entry_point:teardown'
]
},
extras_require={
'docs': [
'sphinx_rtd_theme',
'sphinx'
]
}
)