summaryrefslogtreecommitdiff
path: root/setup.py
blob: 13f0992bd218961507181fd8335833d673639e8b (plain)
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 distutils.core import setup

setup(name="wsgitools",
      version="0.2.4",
      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 :: 2",
          "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"])