Mercurial > hg > redirector
comparison setup.py @ 1:55578cf505dd
add some documentation for redirector
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 10 Mar 2010 10:45:11 -0500 |
parents | af82aaec0377 |
children | ff524f0a62de |
comparison
equal
deleted
inserted
replaced
0:af82aaec0377 | 1:55578cf505dd |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 import sys, os | 2 import sys, os |
3 | 3 |
4 version = "0.1" | 4 # get the description from the README |
5 try: | |
6 filename = os.path.join(os.path.dirname(__file__), 'README.txt') | |
7 description = file(filename).read() | |
8 except: | |
9 description = '' | |
10 | |
11 version = "0.1.1" | |
5 | 12 |
6 setup(name='redirector', | 13 setup(name='redirector', |
7 version=version, | 14 version=version, |
8 description="WSGI middleware/app for managing redirects", | 15 description="WSGI middleware/app for managing redirects", |
9 long_description=""" | 16 long_description=description, |
10 """, | |
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 17 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
12 author='Jeff Hammel', | 18 author='Jeff Hammel', |
13 author_email='jhammel@openplans.org', | 19 author_email='k0scist@gmail.com', |
14 url='http://k0s.org', | 20 url='http://k0s.org/hg/redirector', |
15 license="", | 21 license="GPL", |
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 22 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
17 include_package_data=True, | 23 include_package_data=True, |
18 zip_safe=False, | 24 zip_safe=False, |
19 install_requires=[ | 25 install_requires=[ |
20 # -*- Extra requirements: -*- | 26 # -*- Extra requirements: -*- |