[Checkins] SVN: zope.paste/trunk/ Add a changelog. Add 'dev' suffix to version number in setup.py.

Marius Gedminas cvs-admin at zope.org
Mon Aug 20 13:50:25 UTC 2012


Log message for revision 127525:
  Add a changelog.  Add 'dev' suffix to version number in setup.py.
  
  

Changed:
  A   zope.paste/trunk/CHANGES.txt
  U   zope.paste/trunk/setup.py

-=-
Added: zope.paste/trunk/CHANGES.txt
===================================================================
--- zope.paste/trunk/CHANGES.txt	                        (rev 0)
+++ zope.paste/trunk/CHANGES.txt	2012-08-20 13:50:18 UTC (rev 127525)
@@ -0,0 +1,38 @@
+Change History
+--------------
+
+0.4 (unreleased)
+~~~~~~~~~~~~~~~~
+
+- Add this changelog, reconstructed from svn logs and release dates on
+  PyPI.
+
+
+0.3 (2007-06-02)
+~~~~~~~~~~~~~~~~
+
+- Release as an egg with explicit dependencies for zope.app packages.
+
+- Buildoutify the source tree.
+
+
+0.2 (2007-05-29)
+~~~~~~~~~~~~~~~~
+
+- Extended documentation.
+
+- Added a real PasteDeploy application factory. This allows you to run
+  Zope 3 on any WSGI capable server, without integration code.
+
+- Support for devmode.
+
+- Support multiple databases through a config file (specify db_definition
+  instead of file_storage).
+
+- Accept filenames relative to the location of the PasteDeploy INI file.
+
+
+0.1 (2006-01-25)
+~~~~~~~~~~~~~~~~
+
+- Initial release.

Modified: zope.paste/trunk/setup.py
===================================================================
--- zope.paste/trunk/setup.py	2012-08-18 16:14:42 UTC (rev 127524)
+++ zope.paste/trunk/setup.py	2012-08-20 13:50:18 UTC (rev 127525)
@@ -14,7 +14,6 @@
 """zope.paste - wsgi applications in zope 3 using paste.deploy
 """
 import os
-import sys
 from setuptools import setup, find_packages
 
 classifiers = """\
@@ -27,12 +26,17 @@
 Topic :: Software Development :: Libraries :: Python Modules
 """
 
+def read_file(filename):
+    return open(os.path.join(os.path.dirname(__file__), filename)).read()
+
+long_description = read_file('README.txt') + '\n\n' + read_file('CHANGES.txt')
+
 setup(name="zope.paste",
-      version='0.4',
+      version='0.4dev',
       author="Sidnei da Silva",
       author_email="sidnei at enfoldsystems.com",
       description="Zope 3 and PasteDeploy",
-      long_description=open('README.txt').read(),
+      long_description=long_description,
       keywords="web wsgi application server",
       url="http://cheeseshop.python.org/pypi/zope.paste",
       license="Zope Public License",



More information about the checkins mailing list