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:
|
2014-09-29 13:27:25 +00:00
|
|
|
from setuptools import setup, find_packages
|
2014-04-02 20:36:41 +00:00
|
|
|
except ImportError:
|
2015-01-26 13:12:35 +00:00
|
|
|
print("Ansible now needs setuptools in order to build. " \
|
|
|
|
"Install it using your package manager (usually python-setuptools) or via pip (pip install setuptools).")
|
2014-04-29 19:53:44 +00:00
|
|
|
sys.exit(1)
|
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' },
|
2014-09-29 13:27:25 +00:00
|
|
|
packages=find_packages('lib'),
|
2014-08-07 16:17:13 +00:00
|
|
|
package_data={
|
2014-11-29 23:11:10 +00:00
|
|
|
'': ['module_utils/*.ps1', 'modules/core/windows/*.ps1', 'modules/extras/windows/*.ps1'],
|
2014-08-07 16:17:13 +00:00
|
|
|
},
|
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
|
|
|
],
|
2014-09-26 15:25:56 +00:00
|
|
|
data_files=[],
|
2012-02-24 02:07:03 +00:00
|
|
|
)
|