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
|
#!/usr/bin/env python
from setuptools import setup
setup(name="wsgitools",
version="0.3.1",
description="a set of tools working with WSGI (see PEP 333)",
author="Helmut Grohne",
author_email="helmut@subdivi.de",
url="http://subdivi.de/~helmut/wsgitools/",
platforms = ["any"],
license="GPL",
keywords=["wsgi", "pep333", "scgi"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: No Input/Output (Daemon)",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server"
],
packages=["wsgitools", "wsgitools.scgi"])
|