2012-02-24 03:07:03 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2012-03-16 01:21:10 +01:00
|
|
|
# NOTE: setup.py does NOT install the contents of the library dir
|
2012-08-07 03:00:21 +02:00
|
|
|
# for you, you should go through "make install" or "make RPMs"
|
2012-03-16 01:21:10 +01:00
|
|
|
# for that, or manually copy modules over.
|
|
|
|
|
2012-03-10 20:02:25 +01:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.abspath('lib'))
|
|
|
|
from ansible import __version__, __author__
|
2012-02-24 03:07:03 +01:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='ansible',
|
2012-03-10 20:02:25 +01:00
|
|
|
version=__version__,
|
2012-02-24 03:07:03 +01:00
|
|
|
description='Minimal SSH command and control',
|
2012-03-10 20:02:25 +01:00
|
|
|
author=__author__,
|
2012-02-24 03:07:03 +01:00
|
|
|
author_email='michael.dehaan@gmail.com',
|
2012-03-10 20:02:25 +01:00
|
|
|
url='http://ansible.github.com/',
|
2012-03-05 18:15:24 +01:00
|
|
|
license='GPLv3',
|
2012-04-22 16:33:19 +02:00
|
|
|
install_requires=['paramiko', 'jinja2', "PyYAML"],
|
|
|
|
package_dir={ 'ansible': 'lib/ansible' },
|
2012-02-24 03:07:03 +01:00
|
|
|
packages=[
|
|
|
|
'ansible',
|
2012-05-28 02:40:39 +02:00
|
|
|
'ansible.inventory',
|
|
|
|
'ansible.playbook',
|
|
|
|
'ansible.runner',
|
2012-05-31 02:16:31 +02:00
|
|
|
'ansible.runner.connection',
|
2012-02-24 03:07:03 +01:00
|
|
|
],
|
|
|
|
scripts=[
|
|
|
|
'bin/ansible',
|
2012-08-09 16:39:34 +02:00
|
|
|
'bin/ansible-playbook',
|
|
|
|
'bin/ansible-pull'
|
2012-02-24 03:07:03 +01:00
|
|
|
]
|
|
|
|
)
|