[Checkins] SVN: zope.i18n/trunk/ Move the zcml support into an extra. This reduces the dependencies of a standard zope.i18n install by half a dozen packages.

Wichert Akkerman wichert at wiggy.net
Sat Sep 27 06:09:37 EDT 2008


Log message for revision 91545:
  Move the zcml support into an extra. This reduces the dependencies of a standard zope.i18n install by half a dozen packages.

Changed:
  U   zope.i18n/trunk/CHANGES.txt
  U   zope.i18n/trunk/buildout.cfg
  U   zope.i18n/trunk/setup.py

-=-
Modified: zope.i18n/trunk/CHANGES.txt
===================================================================
--- zope.i18n/trunk/CHANGES.txt	2008-09-27 10:03:35 UTC (rev 91544)
+++ zope.i18n/trunk/CHANGES.txt	2008-09-27 10:09:37 UTC (rev 91545)
@@ -2,6 +2,13 @@
 CHANGES
 =======
 
+head
+----
+
+- Move the zcml support into an extra. This reduces the dependencies of a
+  standard zope.i18n install by half a dozen packages.
+
+
 3.5.0 (2008-07-10)
 ------------------
 

Modified: zope.i18n/trunk/buildout.cfg
===================================================================
--- zope.i18n/trunk/buildout.cfg	2008-09-27 10:03:35 UTC (rev 91544)
+++ zope.i18n/trunk/buildout.cfg	2008-09-27 10:09:37 UTC (rev 91545)
@@ -6,7 +6,7 @@
 [test]
 recipe = zc.recipe.testrunner
 eggs =
-    zope.i18n
+    zope.i18n [zcml]
 
 [test-compile]
 recipe = zc.recipe.testrunner

Modified: zope.i18n/trunk/setup.py
===================================================================
--- zope.i18n/trunk/setup.py	2008-09-27 10:03:35 UTC (rev 91544)
+++ zope.i18n/trunk/setup.py	2008-09-27 10:09:37 UTC (rev 91545)
@@ -53,12 +53,13 @@
     install_requires=['setuptools',
                       'pytz',
                       'zope.i18nmessageid',
-                      'zope.component [zcml]',
+                      'zope.component',
                       'zope.configuration',
                       ],
     include_package_data = True,
     zip_safe = False,
     extras_require = dict(
         compile = ['python-gettext'],
+        zcml = ['zope.component [zcml]'],
         ),
     )



More information about the Checkins mailing list