From 2c873a44671f206431c9117225049426769f2cc4 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 23 Feb 2012 21:07:03 -0500 Subject: [PATCH] Adding setup.py --- setup.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000000..d5664ee55a9 --- /dev/null +++ b/setup.py @@ -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', + ] +) +