[Checkins] SVN: zope.sendmail/trunk/ - add the change notes back to the long description

Fred L. Drake, Jr. fdrake at gmail.com
Thu Dec 20 09:22:46 EST 2007


Log message for revision 82372:
  - add the change notes back to the long description
  - use a similar level of ReST markup in the change notes
  

Changed:
  U   zope.sendmail/trunk/CHANGES.txt
  U   zope.sendmail/trunk/README.txt
  U   zope.sendmail/trunk/setup.py

-=-
Modified: zope.sendmail/trunk/CHANGES.txt
===================================================================
--- zope.sendmail/trunk/CHANGES.txt	2007-12-20 13:57:04 UTC (rev 82371)
+++ zope.sendmail/trunk/CHANGES.txt	2007-12-20 14:22:44 UTC (rev 82372)
@@ -1,3 +1,7 @@
+Change history
+~~~~~~~~~~~~~~
+
+
 3.5.0b1 (unreleased)
 --------------------
 
@@ -12,18 +16,18 @@
 
 - Cleaned up ``does_esmtp`` in faux SMTP connection classes provided by the
   tests.
-- If the QueueProcessorThread is asked to stop while sending messages, do so
-  after sending the current message; previously if there were many, many
+- If the ``QueueProcessorThread`` is asked to stop while sending messages, do
+  so after sending the current message; previously if there were many, many
   messages to send, the thread could stick around for quite a while.
 
 
 3.5.0a1 (2007-10-23)
 --------------------
 
-- QueueProcessorThread now accepts an optional parameter 'interval' for
-  defining how often to processes the mail queue (default is 3 second)
+- ``QueueProcessorThread`` now accepts an optional parameter *interval* for
+  defining how often to processes the mail queue (default is 3 seconds)
 
-- Several QueueProcessorThreads (either in the same process, or multiple
+- Several ``QueueProcessorThreads`` (either in the same process, or multiple
   processes) can now deliver messages from a single maildir without duplicates
   being sent.
 
@@ -37,5 +41,5 @@
 3.4.0a1 (2007-04-22)
 --------------------
 
-Initial release as a separate project, corresponds to zope.sendmail
+Initial release as a separate project, corresponds to ``zope.sendmail``
 from Zope 3.4.0a1.

Modified: zope.sendmail/trunk/README.txt
===================================================================
--- zope.sendmail/trunk/README.txt	2007-12-20 13:57:04 UTC (rev 82371)
+++ zope.sendmail/trunk/README.txt	2007-12-20 14:22:44 UTC (rev 82372)
@@ -1,3 +1,7 @@
+=============
+zope.sendmail
+=============
+
 zope.sendmail is a package for email sending from Zope 3 applications.
 Email sending from Zope 3 applications works as follows:
 

Modified: zope.sendmail/trunk/setup.py
===================================================================
--- zope.sendmail/trunk/setup.py	2007-12-20 13:57:04 UTC (rev 82371)
+++ zope.sendmail/trunk/setup.py	2007-12-20 14:22:44 UTC (rev 82372)
@@ -17,6 +17,7 @@
 """
 from setuptools import setup, find_packages
 
+
 setup(name='zope.sendmail',
       version = '3.5.0b2dev',
       url='http://cheeseshop.python.org/pypi/zope.sendmail',
@@ -24,7 +25,10 @@
       description='Zope sendmail',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description=open('README.txt').read(),
+      long_description='\n\n'.join([
+          open('README.txt').read(),
+          open('CHANGES.txt').read(),
+          ]),
 
       packages=find_packages('src'),
       package_dir = {'': 'src'},



More information about the Checkins mailing list