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
|
|
|
|
2013-12-16 20:57:03 +00:00
|
|
|
sys.path.insert(0, os.path.abspath('lib'))
|
2012-03-10 19:02:25 +00:00
|
|
|
from ansible import __version__, __author__
|
2014-04-02 20:36:41 +00:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
2014-07-17 12:57:26 +00:00
|
|
|
print "Ansible now needs setuptools in order to build. " \
|
2014-04-29 19:53:44 +00:00
|
|
|
"Install it using your package manager (usually python-setuptools) or via pip (pip install setuptools)."
|
|
|
|
sys.exit(1)
|
2012-02-24 02:07:03 +00:00
|
|
|
|
2013-12-16 20:57:03 +00:00
|
|
|
# find library modules
|
|
|
|
from ansible.constants import DEFAULT_MODULE_PATH
|
2014-02-17 20:45:15 +00: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 20:57:03 +00:00
|
|
|
dirs=os.listdir("./library/")
|
2013-04-29 08:50:12 +00:00
|
|
|
data_files = []
|
2013-12-16 20:57:03 +00:00
|
|
|
for i in dirs:
|
2014-01-14 23:13:56 +00:00
|
|
|
data_files.append((os.path.join(install_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__,
|
2014-01-28 16:38:52 +00:00
|
|
|
author_email='michael@ansible.com',
|
|
|
|
url='http://ansible.com/',
|
2012-03-05 17:15:24 +00:00
|
|
|
license='GPLv3',
|
2014-03-14 18:37:24 +00:00
|
|
|
install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'],
|
2013-12-16 20:57:03 +00:00
|
|
|
package_dir={ 'ansible': 'lib/ansible' },
|
2012-02-24 02:07:03 +00:00
|
|
|
packages=[
|
|
|
|
'ansible',
|
2014-07-03 01:02:28 +00:00
|
|
|
'ansible.cache',
|
2012-11-01 19:55:18 +00:00
|
|
|
'ansible.utils',
|
2014-04-15 07:21:41 +00:00
|
|
|
'ansible.utils.module_docs_fragments',
|
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',
|
2014-06-20 14:36:53 +00:00
|
|
|
'ansible.runner.shell_plugins',
|
2012-11-05 14:23:04 +00:00
|
|
|
'ansible.runner.filter_plugins',
|
2012-08-22 00:38:20 +00:00
|
|
|
'ansible.callback_plugins',
|
2013-10-26 19:00:59 +00:00
|
|
|
'ansible.module_utils'
|
2012-02-24 02:07:03 +00:00
|
|
|
],
|
2014-08-07 16:17:13 +00:00
|
|
|
package_data={
|
|
|
|
'': ['module_utils/*.ps1'],
|
|
|
|
},
|
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',
|
2013-12-20 08:27:13 +00:00
|
|
|
'bin/ansible-doc',
|
2014-02-21 08:18:49 +00:00
|
|
|
'bin/ansible-galaxy',
|
|
|
|
'bin/ansible-vault',
|
2012-08-17 01:34:55 +00:00
|
|
|
],
|
|
|
|
data_files=data_files
|
2012-02-24 02:07:03 +00:00
|
|
|
)
|