2004-05-30 | paulb | raw annotate files changeset graph | [project @ 2004-05-30 15:30:41 by paulb] Fixed get_path to include the query string. |
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 )