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
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-08-17 03:34:55 +02:00
|
|
|
# find library modules
|
2013-09-17 04:08:22 +02: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-23 14:34:27 +02:00
|
|
|
data_files.append((os.path.join(DEFAULT_MODULE_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__,
|
2013-08-24 17:25:02 +02:00
|
|
|
author_email='michael@ansibleworks.com',
|
|
|
|
url='http://ansibleworks.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-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',
|
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',
|
|
|
|
'bin/ansible-doc'
|
2012-08-17 03:34:55 +02:00
|
|
|
],
|
|
|
|
data_files=data_files
|
2012-02-24 03:07:03 +01:00
|
|
|
)
|