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