summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpje <pje@571e12c6-e1fa-0310-aee7-ff1267fa46bd>2006-06-07 17:22:14 +0000
committerpje <pje@571e12c6-e1fa-0310-aee7-ff1267fa46bd>2006-06-07 17:22:14 +0000
commitcf3ab1b665f962901c71e911514bd9f92ffec4d6 (patch)
tree5d7be67ea2c4fd9860fe5da887ad0ca7358e451b
parentd81fb05a43b9a40587ceaffab0b42f43201428ef (diff)
downloadwsgiref-cf3ab1b665f962901c71e911514bd9f92ffec4d6.tar.gz
0.1 release
git-svn-id: svn://svn.eby-sarna.com/svnroot/wsgiref@2178 571e12c6-e1fa-0310-aee7-ff1267fa46bd
-rwxr-xr-xREADME.txt10
-rwxr-xr-xsetup.py5
2 files changed, 13 insertions, 2 deletions
diff --git a/README.txt b/README.txt
new file mode 100755
index 0000000..1934ea3
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,10 @@
+This is a standalone release of the ``wsgiref`` library to be included in
+Python 2.5. For the standalone version's documentation, see:
+
+HTML
+ http://peak.telecommunity.com/wsgiref_docs/
+
+PDF
+ http://peak.telecommunity.com/wsgiref.pdf
+
+
diff --git a/setup.py b/setup.py
index 77e77a5..66da854 100755
--- a/setup.py
+++ b/setup.py
@@ -17,11 +17,12 @@ setup(
description="WSGI (PEP 333) Reference Library",
author="Phillip J. Eby",
- author_email="peak@eby-sarna.com",
+ author_email="web-sig@python.org",
license="PSF or ZPL",
- url="http://www.python.org/peps/pep-0333.html",
+ url="http://cheeseshop.python.org/pypi/wsgiref",
+ long_description = open('README.txt').read(),
test_suite = 'test_wsgiref',
packages = ['wsgiref'],
)