public
Description: Tarpipe API library in Python
Homepage: http://wiki.alcidesfonseca.com
Clone URL: git://github.com/alcides/tarpipe-python.git
alcidesfonseca (author)
Fri May 09 05:31:30 -0700 2008
commit  8377d6d0c0dc3e97fe9e4d98f5e469a2498acdb8
tree    3bebc2f5ac0525f671f29b3636d3cdbf6387e30d
parent  4ee0ccc9dad1f41dcc3f039266dc237b945ffc4f
tarpipe-python / setup.py
100644 17 lines (16 sloc) 0.593 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
 
setup(name='tarpipe-python',
version='0.6',
description='A Python interface to the TarPipe API',
author='Alcides Fonseca',
author_email='me@alcidesfonseca.com',
url='http://code.google.com/p/tarpipe-python/',
py_modules=['tarpipe'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)