[Checkins] SVN: zope.i18n/trunk/setup.py zope.configuration is only needed for zcml handling, so move it to the extra as well

Wichert Akkerman wichert at wiggy.net
Sat Sep 27 06:25:03 EDT 2008


Log message for revision 91547:
  zope.configuration is only needed for zcml handling, so move it to the extra as well

Changed:
  U   zope.i18n/trunk/setup.py

-=-
Modified: zope.i18n/trunk/setup.py
===================================================================
--- zope.i18n/trunk/setup.py	2008-09-27 10:20:00 UTC (rev 91546)
+++ zope.i18n/trunk/setup.py	2008-09-27 10:25:01 UTC (rev 91547)
@@ -54,12 +54,14 @@
                       'pytz',
                       'zope.i18nmessageid',
                       'zope.component',
-                      'zope.configuration',
                       ],
     include_package_data = True,
     zip_safe = False,
     extras_require = dict(
         compile = ['python-gettext'],
-        zcml = ['zope.component [zcml]'],
+        zcml = [
+            'zope.component [zcml]',
+            'zope.configuration',
+            ],
         ),
     )



More information about the Checkins mailing list