comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:68bea9e91bd2
1 from setuptools import setup, find_packages
2
3 try:
4 description = file('README.txt').read()
5 except IOError:
6 description = ''
7
8 version = "0.1"
9
10 setup(name='relocator',
11 version=version,
12 description="change Location field in responses using WSGI middleware",
13 long_description=description,
14 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
15 author='Jeff Hammel',
16 author_email='jhammel@mozilla.com',
17 url='',
18 license="MPL",
19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
20 include_package_data=True,
21 zip_safe=False,
22 install_requires=[
23 # -*- Extra requirements: -*-
24 'WebOb',
25 ],
26 entry_points="""
27 # -*- Entry points: -*-
28 """,
29 )
30