[Checkins] SVN: zope.app.wfmc/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Fri Nov 2 21:00:15 EDT 2007


Log message for revision 81417:
  Get ready for release.
  

Changed:
  U   zope.app.wfmc/trunk/CHANGES.txt
  A   zope.app.wfmc/trunk/README.txt
  U   zope.app.wfmc/trunk/buildout.cfg
  U   zope.app.wfmc/trunk/setup.py
  _U  zope.app.wfmc/trunk/src/
  U   zope.app.wfmc/trunk/src/zope/app/wfmc/zcml.txt

-=-
Modified: zope.app.wfmc/trunk/CHANGES.txt
===================================================================
--- zope.app.wfmc/trunk/CHANGES.txt	2007-11-03 00:25:24 UTC (rev 81416)
+++ zope.app.wfmc/trunk/CHANGES.txt	2007-11-03 01:00:14 UTC (rev 81417)
@@ -1,9 +1,16 @@
-zope.zpp.wfmc Changelog
-***********************
+=======
+CHANGES
+=======
 
-0.1.1 2007/06/01
-================
+0.1.2 (2007-11-02)
+------------------
 
+- Fix package meta-data.
+
+
+0.1.1 (2007-06-01)
+------------------
+
 - Add CHANGES.txt
 
 - Fix setup.py to include package data correctly (zcml, xpdl, txt)

Added: zope.app.wfmc/trunk/README.txt
===================================================================
--- zope.app.wfmc/trunk/README.txt	                        (rev 0)
+++ zope.app.wfmc/trunk/README.txt	2007-11-03 01:00:14 UTC (rev 81417)
@@ -0,0 +1,2 @@
+This package provides Zope application level integration of the ``zope.wfmc``
+package including ZCML directives.


Property changes on: zope.app.wfmc/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.wfmc/trunk/buildout.cfg
===================================================================
--- zope.app.wfmc/trunk/buildout.cfg	2007-11-03 00:25:24 UTC (rev 81416)
+++ zope.app.wfmc/trunk/buildout.cfg	2007-11-03 01:00:14 UTC (rev 81417)
@@ -1,7 +1,6 @@
 [buildout]
 develop = .
 parts = test
-find-links = http://download.zope.org/distribution/
 
 [test]
 recipe = zc.recipe.testrunner

Modified: zope.app.wfmc/trunk/setup.py
===================================================================
--- zope.app.wfmc/trunk/setup.py	2007-11-03 00:25:24 UTC (rev 81416)
+++ zope.app.wfmc/trunk/setup.py	2007-11-03 01:00:14 UTC (rev 81417)
@@ -1,23 +1,64 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup for zope.wfmc package
+
+$Id$
+"""
+import os
 from setuptools import setup, find_packages
 
-setup(
-    name = 'zope.app.wfmc',
-    version = '0.1.1',
-    author = 'Zope Corporation and Contributors',
-    author_email = 'zope3-dev at zope.org',
-    description = '',
-    license = 'ZPL 2.1',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-    packages = find_packages('src'),
-    namespace_packages = ['zope', 'zope.app'],
-    package_dir = {'': 'src'},
-    package_data = {'': ['*.txt', '*.zcml', '*.xpdl']},
-    extras_require=dict(test=['zope.app.testing']),
-    install_requires = ['setuptools',
-                       'zope.interface',
-                       'zope.schema',
-                       'zope.configuration',
-                       'zope.wfmc',
-                       'zope.component'],
-    zip_safe = False,
-    )
+setup(name='zope.app.wfmc',
+      version='0.1.2',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description="Zope Application integration for ``zope.wfmc``",
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Documentation\n' +
+          '======================\n\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'wfmc', 'zcml.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 wfmc xpdl workflow engine zcml",
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP',
+          'Framework :: Zope3'],
+      url='http://cheeseshop.python.org/pypi/zope.app.wfmc',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
+      extras_require=dict(test=['zope.app.testing']),
+      install_requires = ['setuptools',
+                          'zope.interface',
+                          'zope.schema',
+                          'zope.configuration',
+                          'zope.wfmc',
+                          'zope.component'],
+      include_package_data = True,
+      zip_safe = False,
+      )


Property changes on: zope.app.wfmc/trunk/src
___________________________________________________________________
Name: svn:ignore
   + zope.app.wfmc.egg-info


Modified: zope.app.wfmc/trunk/src/zope/app/wfmc/zcml.txt
===================================================================
--- zope.app.wfmc/trunk/src/zope/app/wfmc/zcml.txt	2007-11-03 00:25:24 UTC (rev 81416)
+++ zope.app.wfmc/trunk/src/zope/app/wfmc/zcml.txt	2007-11-03 01:00:14 UTC (rev 81417)
@@ -1,3 +1,4 @@
+===========
 Loading XPDL
 ============
 
@@ -2,7 +3,7 @@
 XPDL can be loaded in zcml files with the ``xpdl`` tag::
-    
+
     >>> import os
     >>> file_name = os.path.join(this_directory, 'publication.xpdl')
     >>> zcml("""
-    ...     <configure 
+    ...     <configure
     ...         xmlns="http://namespaces.zope.org/zope"
@@ -12,8 +13,8 @@
     ...         i18n_domain="test"
     ...         >
     ...
-    ...         <wfmc:xpdl 
-    ...             file="%(file_name)s" 
+    ...         <wfmc:xpdl
+    ...             file="%(file_name)s"
     ...             process="Publication"
     ...             id="example.publication"
     ...             integration="zope.wfmc.adapter.integration"
@@ -26,7 +27,7 @@
 
     >>> from zope.wfmc.interfaces import IProcessDefinition
     >>> import zope.component
-    >>> pd = zope.component.getUtility(IProcessDefinition, 
+    >>> pd = zope.component.getUtility(IProcessDefinition,
     ...                                'example.publication')
     >>> pd
     ProcessDefinition('example.publication')



More information about the Checkins mailing list