setup.py
2c873a44
 #!/usr/bin/env python
 
3f245498
 import os
 import sys
 
f3a4705a
 sys.path.insert(0, os.path.abspath('lib'))
3f245498
 from ansible import __version__, __author__
e6220748
 try:
a0fecd61
     from setuptools import setup, find_packages
e6220748
 except ImportError:
9095e97c
     print("Ansible now needs setuptools in order to build. Install it using"
             " your package manager (usually python-setuptools) or via pip (pip"
             " install setuptools).")
8e66a6c8
     sys.exit(1)
2c873a44
 
 setup(name='ansible',
3f245498
       version=__version__,
4a3b762a
       description='Radically simple IT automation',
3f245498
       author=__author__,
373830b5
       author_email='support@ansible.com',
d07a3b5e
       url='http://ansible.com/',
47aa018a
       license='GPLv3',
baa30930
       # Ansible will also make use of a system copy of python-six if installed but use a
       # Bundled copy if it's not.
       install_requires=['paramiko', 'jinja2', "PyYAML", 'setuptools', 'pycrypto >= 2.6'],
597c0f48
       package_dir={ '': 'lib' },
a0fecd61
       packages=find_packages('lib'),
4bf826f5
       package_data={
66c3461f
          '': ['module_utils/*.ps1', 'modules/core/windows/*.ps1', 'modules/extras/windows/*.ps1', 'galaxy/data/*'],
4bf826f5
       },
b2739cec
       classifiers=[
           'Development Status :: 5 - Production/Stable',
           'Environment :: Console',
           'Intended Audience :: Developers',
           'Intended Audience :: Information Technology',
           'Intended Audience :: System Administrators',
           'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
           'Natural Language :: English',
           'Operating System :: POSIX',
           'Programming Language :: Python :: 2.6',
           'Programming Language :: Python :: 2.7',
           'Topic :: System :: Installation/Setup',
           'Topic :: System :: Systems Administration',
           'Topic :: Utilities',
       ],
2c873a44
       scripts=[
          'bin/ansible',
04ff248c
          'bin/ansible-playbook',
17f31a2a
          'bin/ansible-pull',
dc40c406
          'bin/ansible-doc',
ad687fce
          'bin/ansible-galaxy',
          'bin/ansible-vault',
eee2d1af
       ],
e5116d2f
       data_files=[],
2c873a44
 )