[Checkins] SVN: zc.async/trunk/s Changes to setup.py to guarantee that setuptools doesn't remove zcmls on egg

Aaron Lehmann aaron at zope.com
Mon Aug 18 10:14:34 EDT 2008


Log message for revision 89968:
  Changes to setup.py to guarantee that setuptools doesn't remove zcmls on egg
  creation.
  
  

Changed:
  U   zc.async/trunk/setup.py
  U   zc.async/trunk/src/zc/async/CHANGES.txt

-=-
Modified: zc.async/trunk/setup.py
===================================================================
--- zc.async/trunk/setup.py	2008-08-18 13:29:48 UTC (rev 89967)
+++ zc.async/trunk/setup.py	2008-08-18 14:14:34 UTC (rev 89968)
@@ -72,10 +72,11 @@
 
 setup(
     name='zc.async',
-    version='1.4.2a3',
+    version='1.4.2a4',
     namespace_packages=['zc'],
     packages=find_packages('src'),
     package_dir={'':'src'},
+    package_data = {'': ['*.py', '*.txt', '*.zcml']},
     zip_safe=False,
     author='Gary Poster',
     author_email='gary at modernsongs.com',

Modified: zc.async/trunk/src/zc/async/CHANGES.txt
===================================================================
--- zc.async/trunk/src/zc/async/CHANGES.txt	2008-08-18 13:29:48 UTC (rev 89967)
+++ zc.async/trunk/src/zc/async/CHANGES.txt	2008-08-18 14:14:34 UTC (rev 89968)
@@ -24,6 +24,8 @@
 
 - tweaked the uuid.txt to mention zdaemon/supervisor rather than Zope 3.
 
+- fixed some bugs in egg creation
+
 1.4.1 (2008-07-30)
 ==================
 



More information about the Checkins mailing list