0
|
1 from setuptools import setup, find_packages
|
|
2
|
|
3 try:
|
2
|
4 description = open('README.txt').read()
|
|
5 except IOError:
|
0
|
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',
|
2
|
16 author_email='k0scist@gmail.com',
|
1
|
17 url='http://k0s.org/hg/relocator',
|
0
|
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: -*-
|
2
|
24 'WebOb',
|
|
25 ]
|
|
26 )
|