forked from willthames/ansible-review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 920 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
import os
from setuptools import find_packages
from setuptools import setup
import sys
sys.path.insert(0, os.path.abspath('lib'))
exec(open('lib/ansiblereview/version.py').read())
setup(
name='ansible-review',
version=__version__,
description=('reviews ansible playbooks, roles and inventory and suggests improvements'),
keywords='ansible, code review',
author='Will Thames',
author_email='[email protected]',
url='https://github.com/willthames/ansible-review',
package_dir={'': 'lib'},
packages=find_packages('lib'),
include_package_data=True,
zip_safe=False,
install_requires=['ansible-lint>=3.4.1', 'pyyaml', 'appdirs', 'unidiff', 'flake8'],
entry_points={
'console_scripts': [
'ansible-review = ansiblereview.__main__:main'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
],
test_suite="test"
)