[Checkins] SVN: z3c.sqlalchemy/trunk/setup.py including Changes with long_description

Andreas Jung andreas at andreas-jung.com
Sat Apr 21 01:23:43 EDT 2007


Log message for revision 74282:
  including Changes with long_description
  

Changed:
  U   z3c.sqlalchemy/trunk/setup.py

-=-
Modified: z3c.sqlalchemy/trunk/setup.py
===================================================================
--- z3c.sqlalchemy/trunk/setup.py	2007-04-21 05:15:16 UTC (rev 74281)
+++ z3c.sqlalchemy/trunk/setup.py	2007-04-21 05:23:43 UTC (rev 74282)
@@ -25,8 +25,14 @@
 version = open(version_file).read().strip()
 
 readme_file = os.path.join('src', 'z3c', 'sqlalchemy', 'README.txt')
-long_description = open(readme_file).read()
+desc = open(readme_file).read() 
 
+changes_file = os.path.join('src', 'z3c', 'sqlalchemy', 'CHANGES.txt')
+changes = open(changes_file).read()
+
+long_description = desc + '\nChanges:\n========\n\n' + changes
+
+
 setup(name='z3c.sqlalchemy',
       version=version,
       license='ZPL (see LICENSE.txt)',



More information about the Checkins mailing list