[Checkins] SVN: lovely.memcached/trunk/setup.py updated

Andreas Jung andreas at andreas-jung.com
Sun Apr 27 10:09:36 EDT 2008


Log message for revision 85790:
  updated

Changed:
  U   lovely.memcached/trunk/setup.py

-=-
Modified: lovely.memcached/trunk/setup.py
===================================================================
--- lovely.memcached/trunk/setup.py	2008-04-27 14:01:39 UTC (rev 85789)
+++ lovely.memcached/trunk/setup.py	2008-04-27 14:09:36 UTC (rev 85790)
@@ -1,12 +1,18 @@
 #!/usr/bin/env python
+import os
 from setuptools import setup, find_packages
 
+# We can not include the full README.txt file since it contains
+# unicode chars within doctests which will make setuptools break.
+long_description = file('README.txt').read()
+
 setup (
     name='lovely.memcached',
     version='0.1.4',
     author = "Lovely Systems",
     author_email = "office at lovelysystems.com",
     description = "A memcached client utiltiy for zope 3",
+    long_description = long_description,
     license = "ZPL 2.1",
     keywords = "zope3 zope memcached cache ram",
     url = 'svn://svn.zope.org/repos/main/lovely.memcached',



More information about the Checkins mailing list