[Checkins] SVN: zc.objectlog/tags/0.1/setup.py making 'description' short and updating long-description.

Satchidanand Haridas satchit at zope.com
Wed Apr 2 14:38:11 EDT 2008


Log message for revision 85070:
  making 'description' short and updating long-description. 
  
  checking into tag as package has already been released on pypi.
  

Changed:
  U   zc.objectlog/tags/0.1/setup.py

-=-
Modified: zc.objectlog/tags/0.1/setup.py
===================================================================
--- zc.objectlog/tags/0.1/setup.py	2008-04-02 18:03:36 UTC (rev 85069)
+++ zc.objectlog/tags/0.1/setup.py	2008-04-02 18:38:10 UTC (rev 85070)
@@ -1,6 +1,8 @@
 from setuptools import setup, find_packages
 
-long_description = open("src/zc/objectlog/log.txt").read()
+long_description = (open("README.txt").read() +
+                    '\n\n' +
+                    open("src/zc/objectlog/log.txt").read())
 
 setup(
     name="zc.objectlog",
@@ -8,7 +10,7 @@
     license="ZPL 2.1",
     author="Zope Corporation",
     author_email="zope-dev at zope.org",
-    description=open('README.txt').read(),
+    description='Customizable object log for Zope3',
     long_description=long_description,
     keywords="zope zope3 logging",
     packages=find_packages('src'),



More information about the Checkins mailing list