2012-02-24 03:07:03 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2012-03-10 20:02:25 +01:00
|
|
|
import os
|
|
|
|
import sys
|
2012-08-17 03:34:55 +02:00
|
|
|
from glob import glob
|
2012-03-10 20:02:25 +01:00
|
|
|
|
2013-12-16 21:57:03 +01:00
|
|
|
sys.path.insert(0, os.path.abspath('lib'))
|
2012-03-10 20:02:25 +01:00
|
|
|
from ansible import __version__, __author__
|
2012-02-24 03:07:03 +01:00
|
|
|
from distutils.core import setup
|
|
|
|
|
2013-12-16 21:57:03 +01:00
|
|
|
# find library modules
|
|
|
|
from ansible.constants import DEFAULT_MODULE_PATH
|
2014-02-17 21:45:15 +01:00
|
|
|
module_paths = DEFAULT_MODULE_PATH.split(os.pathsep)
|
|
|
|
# always install in /usr/share/ansible if specified
|
|
|
|
# otherwise use the first module path listed
|
|
|
|
if '/usr/share/ansible' in module_paths:
|
|
|
|
install_path = '/usr/share/ansible'
|
|
|
|
else:
|
|
|
|
install_path = module_paths[0]
|
2013-12-16 21:57:03 +01:00
|
|
|
dirs=os.listdir("./library/")
|
2013-04-29 10:50:12 +02:00
|
|
|
data_files = []
|
2013-12-16 21:57:03 +01:00
|
|
|
for i in dirs:
|
2014-01-15 00:13:56 +01:00
|
|
|
data_files.append((os.path.join(install_path, i), glob('./library/' + i + '/*')))
|
2012-08-17 03:34:55 +02:00
|
|
|
|
2012-02-24 03:07:03 +01:00
|
|
|
setup(name='ansible',
|
2012-03-10 20:02:25 +01:00
|
|
|
version=__version__,
|
2013-08-24 17:25:02 +02:00
|
|
|
description='Radically simple IT automation',
|
2012-03-10 20:02:25 +01:00
|
|
|
author=__author__,
|
2014-01-28 17:38:52 +01:00
|
|
|
author_email='michael@ansible.com',
|
|
|
|
url='http://ansible.com/',
|
2012-03-05 18:15:24 +01:00
|
|
|
license='GPLv3',
|
2012-04-22 16:33:19 +02:00
|
|
|
install_requires=['paramiko', 'jinja2', "PyYAML"],
|
2013-12-16 21:57:03 +01:00
|
|
|
package_dir={ 'ansible': 'lib/ansible' },
|
2012-02-24 03:07:03 +01:00
|
|
|
packages=[
|
|
|
|
'ansible',
|
2012-11-01 20:55:18 +01:00
|
|
|
'ansible.utils',
|
2012-05-28 02:40:39 +02:00
|
|
|
'ansible.inventory',
|
2012-10-27 02:20:02 +02:00
|
|
|
'ansible.inventory.vars_plugins',
|
2012-05-28 02:40:39 +02:00
|
|
|
'ansible.playbook',
|
|
|
|
'ansible.runner',
|
2012-09-07 03:35:34 +02:00
|
|
|
'ansible.runner.action_plugins',
|
2012-10-13 02:07:45 +02:00
|
|
|
'ansible.runner.lookup_plugins',
|
2012-08-22 02:38:20 +02:00
|
|
|
'ansible.runner.connection_plugins',
|
2012-11-05 15:23:04 +01:00
|
|
|
'ansible.runner.filter_plugins',
|
2012-08-22 02:38:20 +02:00
|
|
|
'ansible.callback_plugins',
|
2013-10-26 21:00:59 +02:00
|
|
|
'ansible.module_utils'
|
2012-02-24 03:07:03 +01:00
|
|
|
],
|
|
|
|
scripts=[
|
|
|
|
'bin/ansible',
|
2012-08-09 16:39:34 +02:00
|
|
|
'bin/ansible-playbook',
|
2012-11-28 09:39:26 +01:00
|
|
|
'bin/ansible-pull',
|
2013-12-20 09:27:13 +01:00
|
|
|
'bin/ansible-doc',
|
2014-02-21 09:18:49 +01:00
|
|
|
'bin/ansible-galaxy',
|
|
|
|
'bin/ansible-vault',
|
2012-08-17 03:34:55 +02:00
|
|
|
],
|
|
|
|
data_files=data_files
|
2012-02-24 03:07:03 +01:00
|
|
|
)
|