1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
from setuptools import setup, find_packages
version = '0.4.5'
def read(name):
try:
with open(name) as fd:
return fd.read()
except:
return ''
setup(name='WSGIProxy2',
version=version,
long_description=read('README.rst') + '\n' + read('CHANGES.rst'),
description='A WSGI Proxy with various http client backends',
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
keywords='wsgi proxy',
author='Gael Pasgrimaud',
author_email='gael@gawel.org',
url='https://github.com/gawel/WSGIProxy2/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'README_fixt', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=['webob', 'six'],
entry_points="""
# -*- Entry points: -*-
""",
)
|