setup.py 768 Bytes
Newer Older
Michael DeHaan committed
1 2
#!/usr/bin/env python

3 4 5 6
# 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.

7 8 9 10 11 12
import glob
import os
import sys

sys.path.insert(0, os.path.abspath('lib'))
from ansible import __version__, __author__
Michael DeHaan committed
13 14 15
from distutils.core import setup

setup(name='ansible',
16
      version=__version__,
Michael DeHaan committed
17
      description='Minimal SSH command and control',
18
      author=__author__,
Michael DeHaan committed
19
      author_email='michael.dehaan@gmail.com',
20
      url='http://ansible.github.com/',
21
      license='GPLv3',
Michael DeHaan committed
22 23 24 25 26 27
      package_dir = { 'ansible' : 'lib/ansible' },
      packages=[
         'ansible',
      ],
      scripts=[
         'bin/ansible',
28
         'bin/ansible-playbook'
Michael DeHaan committed
29 30
      ]
)