Move setup.py stuff back to top level as "make sdist" was not working, plus, it makes sources cleaner.

This commit is contained in:
Michael DeHaan 2012-04-21 11:56:06 -04:00
parent a8d748220b
commit f72114c657
4 changed files with 12 additions and 12 deletions

30
setup.py Normal file
View file

@ -0,0 +1,30 @@
#!/usr/bin/env python
# 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.
import glob
import os
import sys
sys.path.insert(0, os.path.abspath('lib'))
from ansible import __version__, __author__
from distutils.core import setup
setup(name='ansible',
version=__version__,
description='Minimal SSH command and control',
author=__author__,
author_email='michael.dehaan@gmail.com',
url='http://ansible.github.com/',
license='GPLv3',
package_dir = { 'ansible' : 'lib/ansible' },
packages=[
'ansible',
],
scripts=[
'bin/ansible',
'bin/ansible-playbook'
]
)