changeset 14:d37e932a727c

setup.py
author Thinker K.F. Li <thinker@codemud.net>
date Tue, 29 Mar 2011 15:45:07 +0800
parents 9f0d13830f6c
children df271f46caad
files setup.py
diffstat 1 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Tue Mar 29 15:45:07 2011 +0800
@@ -0,0 +1,21 @@
+from distutils.core import setup
+
+setup(name='PyShada',
+      version='0.9.0',
+      packages=['shada'],
+      author='Thinker K.F. Li',
+      author_email='thinker@branda.to',
+      url='http://www.assembla.com/spaces/pyshada/',
+      description='Shell adaptor for Python',
+      long_description='''
+PYthon SHell ADApter to simplify calling shell commands from Python
+code.  Calling shell commands is usually tedious, especially transfer
+data between Python and shell domain. Creating a pipeline to call
+several external tools in Python code is not as simple as shell
+command doing. It is also hard to passing variables between domains,
+you need tediously string joining/formatting and parsing.  PyShada
+tries to help you for calling shell commands.
+      ''',
+      classifiers=['Programming Language :: Python',
+                   'License :: OSI Approved :: BSD License'],
+      )