forked from willthames/ansible-inventory-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 807 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
#!/usr/bin/env python
import os
import sys
from setuptools import find_packages, setup
sys.path.insert(0, os.path.abspath('lib'))
exec(open('lib/ansibleinventorygrapher/version.py').read())
setup(
name='ansible-inventory-grapher',
version=__version__,
description='Creates graphs representing ansible inventory',
author='Will Thames',
author_email='[email protected]',
url='http://github.com/willthames/ansible-inventory-grapher',
license='GPLv3',
install_requires=['ansible >= 2.4'],
package_dir={'': 'lib'},
packages=find_packages('lib'),
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': [
'ansible-inventory-grapher = ansibleinventorygrapher.__main__:main'
]
},
test_suite="test",
)