[Checkins] SVN: transaction/trunk/setup.py Include the changelog in the long_description.

Philipp von Weitershausen philikon at philikon.de
Sat Nov 10 04:24:37 EST 2007


Log message for revision 81676:
  Include the changelog in the long_description.
  

Changed:
  U   transaction/trunk/setup.py

-=-
Modified: transaction/trunk/setup.py
===================================================================
--- transaction/trunk/setup.py	2007-11-10 09:23:25 UTC (rev 81675)
+++ transaction/trunk/setup.py	2007-11-10 09:24:37 UTC (rev 81676)
@@ -22,7 +22,9 @@
 from setuptools import setup, find_packages
 
 here = os.path.abspath(os.path.dirname(__file__))
-README = open(os.path.join(here, 'README.txt')).read()
+README = (open(os.path.join(here, 'README.txt')).read()
+          + '\n\n' +
+          open(os.path.join(here, 'CHANGES.txt')).read())
 
 setup(name='transaction',
       version=__version__,



More information about the Checkins mailing list