-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
37 lines (32 loc) · 1.07 KB
/
setup.py
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.5.2.dev0'
def read(name):
try:
with open(name) as fd:
return fd.read()
except Exception:
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 :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
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'],
entry_points="""
# -*- Entry points: -*-
""",
)