-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='WsgiUnproxy',
version='1.0',
description='Unproxy WSGI middleware',
author='Søren Løvborg',
author_email='[email protected]',
url='https://bitbucket.org/kwi/wsgiunproxy/',
license='Public Domain',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
],
long_description=open('README.txt', 'r').read(),
packages=['wsgiunproxy'],
zip_safe=True,
entry_points = {
'paste.filter_factory': [
'main=wsgiunproxy:paste_filter_factory',
]
},
)