[Zope-Checkins] SVN: Zope/trunk/ fixed section header in order to generate a valid compound reST documented

Andreas Jung andreas at andreas-jung.com
Thu Feb 26 05:04:18 EST 2009


Log message for revision 97289:
  fixed section header in order to generate a valid compound reST documented
  for the PyPI upload 
  

Changed:
  U   Zope/trunk/doc/CHANGES.rst
  U   Zope/trunk/setup.py

-=-
Modified: Zope/trunk/doc/CHANGES.rst
===================================================================
--- Zope/trunk/doc/CHANGES.rst	2009-02-26 09:52:13 UTC (rev 97288)
+++ Zope/trunk/doc/CHANGES.rst	2009-02-26 10:04:17 UTC (rev 97289)
@@ -1,5 +1,5 @@
 Changelog
-=========
+---------
 
 This file contains change information for the current Zope release.
 Change information for previous versions of Zope can be found in the

Modified: Zope/trunk/setup.py
===================================================================
--- Zope/trunk/setup.py	2009-02-26 09:52:13 UTC (rev 97288)
+++ Zope/trunk/setup.py	2009-02-26 10:04:17 UTC (rev 97289)
@@ -32,7 +32,10 @@
         result.append('%s==%s' % (package, version))
     return result
 
+long_description=file("README.txt").read() + "\n" + file(os.path.join("doc", "CHANGES.rst")).read()
 
+file('/tmp/xx.rst', 'w').write(long_description)
+
 setup(name='Zope2',
       version = '2.12.0.a1',
       url='http://www.zope.org',



More information about the Zope-Checkins mailing list