Skip to content

Commit

Permalink
Adding setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdehaan committed Feb 24, 2012
1 parent 9681e1f commit 2c873a4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/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='[email protected]',
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',
]
)

0 comments on commit 2c873a4

Please sign in to comment.