WebStack

setup.py

138:ef59d738a382
2004-05-29 paulb [project @ 2004-05-29 23:06:28 by paulb] Added a success screen for mod_python, which won't allow redirects and cookies in the same transaction.
     1 #! /usr/bin/env python     2      3 from distutils.core import setup     4      5 import WebStack     6      7 setup(     8     name         = "WebStack",     9     description  = "Common API for Web applications",    10     author       = "Paul Boddie",    11     author_email = "paul@boddie.org.uk",    12     url          = "http://www.boddie.org.uk/python/WebStack.html",    13     version      = WebStack.__version__,    14     packages     = ["WebStack", "WebStack.Adapters", "WebStack.Helpers"]    15     )