2012-02-23 21:07:03 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2012-03-10 14:02:25 -05:00
|
|
|
import os
|
|
|
|
import sys
|
2012-08-16 21:34:55 -04:00
|
|
|
from glob import glob
|
2012-03-10 14:02:25 -05:00
|
|
|
|
|
|
|
sys.path.insert(0, os.path.abspath('lib'))
|
|
|
|
from ansible import __version__, __author__
|
2012-02-23 21:07:03 -05:00
|
|
|
from distutils.core import setup
|
|
|
|
|
2012-08-16 21:34:55 -04:00
|
|
|
# find library modules
|
2013-09-16 19:08:22 -07:00
|
|
|
from ansible.constants import DEFAULT_MODULE_PATH
|
2013-04-29 10:50:12 +02:00
|
|
|
dirs=os.listdir("./library/")
|
|
|
|
data_files = []
|
|
|
|
for i in dirs:
|
2013-09-16 19:08:22 -07:00
|
|
|
data_files.append((DEFAULT_MODULE_PATH + i, glob('./library/' + i + '/*')))
|
2012-08-16 21:34:55 -04:00
|
|
|
|
2012-02-23 21:07:03 -05:00
|
|
|
setup(name='ansible',
|
2012-03-10 14:02:25 -05:00
|
|
|
version=__version__,
|
2013-08-24 11:25:02 -04:00
|
|
|
description='Radically simple IT automation',
|
2012-03-10 14:02:25 -05:00
|
|
|
author=__author__,
|
2013-08-24 11:25:02 -04:00
|
|
|
author_email='michael@ansibleworks.com',
|
|
|
|
url='http://ansibleworks.com/',
|
2012-03-05 12:15:24 -05:00
|
|
|
license='GPLv3',
|
2012-04-22 16:33:19 +02:00
|
|
|
install_requires=['paramiko', 'jinja2', "PyYAML"],
|
|
|
|
package_dir={ 'ansible': 'lib/ansible' },
|
2012-02-23 21:07:03 -05:00
|
|
|
packages=[
|
|
|
|
'ansible',
|
2012-11-01 20:55:18 +01:00
|
|
|
'ansible.utils',
|
2012-05-27 20:40:39 -04:00
|
|
|
'ansible.inventory',
|
2012-10-26 20:20:02 -04:00
|
|
|
'ansible.inventory.vars_plugins',
|
2012-05-27 20:40:39 -04:00
|
|
|
'ansible.playbook',
|
|
|
|
'ansible.runner',
|
2012-09-06 21:35:34 -04:00
|
|
|
'ansible.runner.action_plugins',
|
2012-10-12 20:07:45 -04:00
|
|
|
'ansible.runner.lookup_plugins',
|
2012-08-21 20:38:20 -04:00
|
|
|
'ansible.runner.connection_plugins',
|
2012-11-05 15:23:04 +01:00
|
|
|
'ansible.runner.filter_plugins',
|
2012-08-21 20:38:20 -04:00
|
|
|
'ansible.callback_plugins',
|
2012-02-23 21:07:03 -05:00
|
|
|
],
|
|
|
|
scripts=[
|
|
|
|
'bin/ansible',
|
2012-08-09 10:39:34 -04:00
|
|
|
'bin/ansible-playbook',
|
2012-11-28 09:39:26 +01:00
|
|
|
'bin/ansible-pull',
|
|
|
|
'bin/ansible-doc'
|
2012-08-16 21:34:55 -04:00
|
|
|
],
|
|
|
|
data_files=data_files
|
2012-02-23 21:07:03 -05:00
|
|
|
)
|