diff options
author | Wichert Akkerman <wichert@wiggy.net> | 2008-09-27 10:25:01 +0000 |
---|---|---|
committer | Wichert Akkerman <wichert@wiggy.net> | 2008-09-27 10:25:01 +0000 |
commit | cc1c04898fcdf716b7410ba1f33f8f257303057c (patch) | |
tree | 75578e57d4c5bbaa078eacd72917dff09502309c /setup.py | |
parent | 014f299604f6ae3c1169c89ac611c4c27aa9d6d0 (diff) | |
download | zope-i18n-cc1c04898fcdf716b7410ba1f33f8f257303057c.tar.gz |
zope.configuration is only needed for zcml handling, so move it to the extra as well
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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', + ], ), ) |