[Zope-Checkins] SVN: Zope/trunk/setup.py dupe long_description parameter
Andreas Jung
andreas at andreas-jung.com
Thu Feb 19 09:25:55 EST 2009
Log message for revision 96752:
dupe long_description parameter
Changed:
U Zope/trunk/setup.py
-=-
Modified: Zope/trunk/setup.py
===================================================================
--- Zope/trunk/setup.py 2009-02-19 14:24:28 UTC (rev 96751)
+++ Zope/trunk/setup.py 2009-02-19 14:25:55 UTC (rev 96752)
@@ -40,11 +40,9 @@
description='Zope2 application server / web framework',
author='Zope Corporation and Contributors',
author_email='zope-dev at zope.org',
- long_description=open("README.txt").read() + "\n" +
- open(os.path.join("doc", "CHANGES.txt")).read(),
+ long_description=file("README.txt").read() + "\n" +
+ file(os.path.join("doc", "CHANGES.txt")).read(),
- long_description='',
-
packages=find_packages('src'),
package_dir={'': 'src'},
More information about the Zope-Checkins
mailing list