summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'],
)