From c4a3e7e0947da2896be9b54876db3bd67444e7a4 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Tue, 8 May 2007 20:18:42 +0200 Subject: added setup.py --- setup.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..39b06bb --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name="wsgitools", + version="0.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 :: 3 - Alpha", + "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"]) -- cgit v1.2.3