[Checkins] SVN: zope.app.wfmc/trunk/ Bugfix, include missing files in egg.

Brian Sutherland jinty at web.de
Fri Jun 1 03:54:18 EDT 2007


Log message for revision 76068:
  Bugfix, include missing files in egg.

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

-=-
Added: zope.app.wfmc/trunk/CHANGES.txt
===================================================================
--- zope.app.wfmc/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.wfmc/trunk/CHANGES.txt	2007-06-01 07:54:14 UTC (rev 76068)
@@ -0,0 +1,9 @@
+zope.zpp.wfmc Changelog
+***********************
+
+0.1.1 2007/06/01
+================
+
+- Add CHANGES.txt
+
+- Fix setup.py to include package data correctly (zcml, xpdl, txt)


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

Modified: zope.app.wfmc/trunk/setup.py
===================================================================
--- zope.app.wfmc/trunk/setup.py	2007-06-01 02:39:01 UTC (rev 76067)
+++ zope.app.wfmc/trunk/setup.py	2007-06-01 07:54:14 UTC (rev 76068)
@@ -2,7 +2,7 @@
 
 setup(
     name = 'zope.app.wfmc',
-    version = '0.1',
+    version = '0.1.1',
     author = 'Zope Corporation and Contributors',
     author_email = 'zope3-dev at zope.org',
     description = '',
@@ -11,6 +11,7 @@
     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',



More information about the Checkins mailing list