setup.py
2c873a44
 #!/usr/bin/env python
 
9049b0e7
 # NOTE: setup.py does NOT install the contents of the library dir
 # for you, you should go through "make install" or "make RPMs" 
 # for that, or manually copy modules over.
 
3f245498
 import os
 import sys
 
 sys.path.insert(0, os.path.abspath('lib'))
 from ansible import __version__, __author__
2c873a44
 from distutils.core import setup
 
 setup(name='ansible',
3f245498
       version=__version__,
2c873a44
       description='Minimal SSH command and control',
3f245498
       author=__author__,
2c873a44
       author_email='michael.dehaan@gmail.com',
3f245498
       url='http://ansible.github.com/',
38c3f28f
       license='GPLv3+',
f7469f87
       install_requires=['paramiko', 'jinja2', "PyYAML"],
       package_dir={ 'ansible': 'lib/ansible' },
2c873a44
       packages=[
          'ansible',
       ],
       scripts=[
          'bin/ansible',
03569256
          'bin/ansible-playbook'
2c873a44
       ]
 )