|
|
@@ -1,21 +1,21 @@ |
|
|
#!/usr/bin/env python |
|
|
|
|
|
from setuptools import setup |
|
|
import setuptools |
|
|
|
|
|
|
|
|
setup( |
|
|
setuptools.setup( |
|
|
name='ansible-test', |
|
|
version='1.0.1', |
|
|
description='An Ansible Testing Framework for Humans', |
|
|
url='https://github.com/nylas/ansible-test/', |
|
|
include_package_data = True, |
|
|
packages = ['ansible_test'], |
|
|
packages = setuptools.find_packages(), |
|
|
package_data = { |
|
|
"ansible_test": [ |
|
|
"resources/Dockerfile.j2", |
|
|
"resources/inventory.yml", |
|
|
"resources/playbook.yml"] |
|
|
"ansible_test": ["templates/*.j2"] |
|
|
}, |
|
|
entry_points={ |
|
|
'console_scripts': [ |
|
|
'ansible-test=ansible_test.__main__:main', |
|
|
], |
|
|
}, |
|
|
scripts=['bin/ansible-test'], |
|
|
install_requires=['Jinja2'] |
|
|
install_requires=['Jinja2>=2.10'] |
|
|
) |