[z3-checkins] r28818 - z3/hurry.workflow/trunk
faassen at codespeak.net
faassen at codespeak.net
Thu Jun 15 15:37:07 CEST 2006
Author: faassen
Date: Thu Jun 15 15:37:06 2006
New Revision: 28818
Added:
z3/hurry.workflow/trunk/setup.py
Modified:
z3/hurry.workflow/trunk/CHANGES.txt
Log:
eggification.
Modified: z3/hurry.workflow/trunk/CHANGES.txt
==============================================================================
--- z3/hurry.workflow/trunk/CHANGES.txt (original)
+++ z3/hurry.workflow/trunk/CHANGES.txt Thu Jun 15 15:37:06 2006
@@ -1,13 +1,15 @@
hurry.workflow changes
======================
-unreleased
-----------
+0.9 (2006-06-15)
+----------------
* separate out from hurry package into hurry.workflow
* eggification work
+* Zope 3.3 compatibility work
+
0.8 (2006-05-01)
----------------
Added: z3/hurry.workflow/trunk/setup.py
==============================================================================
--- (empty file)
+++ z3/hurry.workflow/trunk/setup.py Thu Jun 15 15:37:06 2006
@@ -0,0 +1,24 @@
+from setuptools import setup, find_packages
+
+setup(
+ name="hurry.workflow",
+ version="0.9",
+ packages=find_packages('src', exclude=["*.tests", "*.ftests"]),
+
+ package_dir= {'':'src'},
+
+ namespace_packages=['hurry'],
+ package_data = {
+ '': ['*.txt', '*.zcml'],
+ },
+
+ zip_safe=False,
+ author='Infrae',
+ author_email='faassen at infrae.com',
+ description="""\
+hurry.workflow is a simple workflow system. It can be used to
+implement stateful multi-version workflows for Zope 3 applications.
+""",
+ license='BSD',
+ keywords="zope zope3",
+ )
More information about the z3-checkins
mailing list