[z3-checkins] r45687 - z3/hurry.workflow/trunk
faassen at codespeak.net
faassen at codespeak.net
Wed Aug 15 19:48:39 CEST 2007
Author: faassen
Date: Wed Aug 15 19:48:38 2007
New Revision: 45687
Modified:
z3/hurry.workflow/trunk/CHANGES.txt
z3/hurry.workflow/trunk/CREDITS.txt
z3/hurry.workflow/trunk/README.txt
z3/hurry.workflow/trunk/setup.py
Log:
Work to register documentation with the cheese shop.
Modified: z3/hurry.workflow/trunk/CHANGES.txt
==============================================================================
--- z3/hurry.workflow/trunk/CHANGES.txt (original)
+++ z3/hurry.workflow/trunk/CHANGES.txt Wed Aug 15 19:48:38 2007
@@ -1,13 +1,29 @@
hurry.workflow changes
-======================
+**********************
+
+0.9.2 (2007-08-15)
+==================
+
+Bug fixes
+---------
+
+* zope.security changes broke imports in hurry.workflow.
+
+* localUtility directive is now deprecated, so don't use it anymore.
0.9.1 (2006-09-22)
-------------------
+==================
+
+Feature changes
+---------------
* first cheesehop release.
0.9 (2006-06-15)
-----------------
+================
+
+Feature changes
+---------------
* separate out from hurry package into hurry.workflow
@@ -16,6 +32,9 @@
* Zope 3.3 compatibility work
0.8 (2006-05-01)
-----------------
+================
+
+Feature changes
+---------------
Initial public release.
Modified: z3/hurry.workflow/trunk/CREDITS.txt
==============================================================================
--- z3/hurry.workflow/trunk/CREDITS.txt (original)
+++ z3/hurry.workflow/trunk/CREDITS.txt Wed Aug 15 19:48:38 2007
@@ -1,8 +1,11 @@
Credits
-------
-Martijn Faassen - initial and main developer
-Jan-Wijbrand Kolman - suggestions and feedback
+* Martijn Faassen - initial and main developer
+
+* Jan-Wijbrand Kolman - suggestions and feedback
+
+* Tobias Rodäbel - compatibility fixes
The hurry.workflow library for Zope 3 was originally developed at
Infrae (http://www.infrae.com).
Modified: z3/hurry.workflow/trunk/README.txt
==============================================================================
--- z3/hurry.workflow/trunk/README.txt (original)
+++ z3/hurry.workflow/trunk/README.txt Wed Aug 15 19:48:38 2007
@@ -1,2 +1,5 @@
-hurry.workflow - a simple but quite nifty workflow system. See
- src/hurry/workflow/workflow.txt for documentation.
+**************
+hurry.workflow
+**************
+
+A simple but quite nifty workflow system for Zope 3.
Modified: z3/hurry.workflow/trunk/setup.py
==============================================================================
--- z3/hurry.workflow/trunk/setup.py (original)
+++ z3/hurry.workflow/trunk/setup.py Wed Aug 15 19:48:38 2007
@@ -1,8 +1,28 @@
+import os
from setuptools import setup, find_packages
+def read(*rnames):
+ return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+ read('README.txt')
+ + '\n' +
+ read('CHANGES.txt')
+ + '\n' +
+ 'Detailed Documentation\n'
+ '**********************\n'
+ + '\n' +
+ read('src', 'hurry', 'workflow', 'workflow.txt')
+ + '\n' +
+ 'Download\n'
+ '********\n'
+ )
+
+open('doc.txt', 'w').write(long_description)
+
setup(
name="hurry.workflow",
- version="0.9.1",
+ version="0.9.2",
packages=find_packages('src'),
package_dir= {'':'src'},
@@ -19,6 +39,7 @@
hurry.workflow is a simple workflow system. It can be used to
implement stateful multi-version workflows for Zope 3 applications.
""",
+ long_description=long_description,
license='BSD',
keywords="zope zope3",
classifiers = ['Framework :: Zope3'],
More information about the z3-checkins
mailing list