Mercurial > hg > relocator
diff setup.py @ 0:68bea9e91bd2
initial import of relocator
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 01 May 2011 13:31:40 -0700 |
parents | |
children | a12647395076 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Sun May 01 13:31:40 2011 -0700 @@ -0,0 +1,30 @@ +from setuptools import setup, find_packages + +try: + description = file('README.txt').read() +except IOError: + description = '' + +version = "0.1" + +setup(name='relocator', + version=version, + description="change Location field in responses using WSGI middleware", + long_description=description, + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='Jeff Hammel', + author_email='jhammel@mozilla.com', + url='', + license="MPL", + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + # -*- Extra requirements: -*- + 'WebOb', + ], + entry_points=""" + # -*- Entry points: -*- + """, + ) +