From cc1c04898fcdf716b7410ba1f33f8f257303057c Mon Sep 17 00:00:00 2001 From: Wichert Akkerman Date: Sat, 27 Sep 2008 10:25:01 +0000 Subject: zope.configuration is only needed for zcml handling, so move it to the extra as well --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d21facb..cbbd81f 100644 --- a/setup.py +++ b/setup.py @@ -54,12 +54,14 @@ setup( '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', + ], ), ) -- cgit v1.2.1