2017-10-25 10:33:37 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from ansibleplaybookgrapher import __version__
|
|
|
|
|
|
|
|
try:
|
|
|
|
long_description = open('README.md').read()
|
|
|
|
except:
|
|
|
|
long_description = None
|
|
|
|
|
|
|
|
setup(name="ansible-playbook-grapher",
|
|
|
|
version=__version__,
|
|
|
|
description="A command line tool to create a graph representing your Ansible playbook tasks and roles",
|
2017-10-25 14:57:12 +00:00
|
|
|
url="https://https://github.com/haidaraM/ansible-playbook-grapher",
|
2017-10-25 10:33:37 +00:00
|
|
|
author="HAIDARA Mohamed El Mouctar",
|
|
|
|
author_email="elmhaidara@gmail.com",
|
|
|
|
license="MIT",
|
|
|
|
install_requires=['graphviz'],
|
|
|
|
packages=find_packages(exclude=['tests']),
|
2017-10-25 14:57:12 +00:00
|
|
|
download_url="https://github.com/haidaraM/ansible-playbook-grapher/archive/v" + __version__ + ".tar.gz",
|
2017-10-25 10:33:37 +00:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2017-10-25 14:50:08 +00:00
|
|
|
'ansible-playbook-grapher = ansibleplaybookgrapher:main'
|
2017-10-25 10:33:37 +00:00
|
|
|
]
|
|
|
|
})
|