Commit 2c873a44 by Michael DeHaan

Adding setup.py

parent 9681e1fa
#!/usr/bin/env python
from distutils.core import setup
setup(name='ansible',
version='1.0',
description='Minimal SSH command and control',
author='Michael DeHaan',
author_email='michael.dehaan@gmail.com',
url='http://github.com/mpdehaan/ansible/',
license='MIT',
package_dir = { 'ansible' : 'lib/ansible' },
packages=[
'ansible',
],
data_files=[
('/usr/share/ancible', 'library/ping'),
('/usr/share/ancible', 'library/command'),
('/usr/share/ancible', 'library/facter'),
('/usr/share/ancible', 'library/copy'),
],
scripts=[
'bin/ansible',
]
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment