[Checkins] SVN: zope.hookable/trunk/ Use README, CHANGES to generate long description.

Tres Seaver cvs-admin at zope.org
Mon Jun 4 16:51:35 UTC 2012


Log message for revision 126572:
  Use README, CHANGES to generate long description.

Changed:
  _U  zope.hookable/trunk/
  U   zope.hookable/trunk/README.txt
  U   zope.hookable/trunk/setup.py

-=-
Modified: zope.hookable/trunk/README.txt
===================================================================
--- zope.hookable/trunk/README.txt	2012-06-04 16:48:14 UTC (rev 126571)
+++ zope.hookable/trunk/README.txt	2012-06-04 16:51:31 UTC (rev 126572)
@@ -1,5 +1,5 @@
-zope.hookable Package Readme
-============================
+``zope.hookable`` Readme
+========================
 
 Overview
 --------

Modified: zope.hookable/trunk/setup.py
===================================================================
--- zope.hookable/trunk/setup.py	2012-06-04 16:48:14 UTC (rev 126571)
+++ zope.hookable/trunk/setup.py	2012-06-04 16:51:31 UTC (rev 126572)
@@ -23,6 +23,9 @@
 
 from setuptools import setup, find_packages, Extension
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name='zope.hookable',
       version = '4.0.0dev',
       url='http://svn.zope.org/zope.hookable',
@@ -30,7 +33,8 @@
       description='Zope hookable',
       author='Zope Foundation and Contributors',
       author_email='zope-dev at zope.org',
-      long_description="Hookable object support.",
+      long_description=(read('README.txt') + '\n\n' +
+                        read('CHANGES.txt')),
       classifiers=[
         "Development Status :: 5 - Production/Stable",
         "Intended Audience :: Developers",



More information about the checkins mailing list