Adding setup.py
This commit is contained in:
parent
9681e1fa04
commit
2c873a4467
1 changed files with 26 additions and 0 deletions
26
setup.py
Normal file
26
setup.py
Normal file
|
@ -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='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',
|
||||
]
|
||||
)
|
||||
|
Loading…
Reference in a new issue