
tseaver at palladion
Mar 13, 2006, 2:28 PM
Post #1 of 1
(829 views)
Permalink
|
|
SVN: zope.i18n/trunk/setup.py Dots *do* seem to work.
|
|
Log message for revision 65977: Dots *do* seem to work. Changed: U zope.i18n/trunk/setup.py -=- Modified: zope.i18n/trunk/setup.py =================================================================== --- zope.i18n/trunk/setup.py 2006-03-13 22:28:17 UTC (rev 65976) +++ zope.i18n/trunk/setup.py 2006-03-13 22:28:54 UTC (rev 65977) @@ -23,7 +23,7 @@ except ImportError, e: from distutils.core import setup, Extension -setup(name='zope_i18n', +setup(name='zope.i18n', version='1.0', url='http://svn.zope.org/zope.i18n', license='ZPL 2.1', @@ -36,13 +36,13 @@ package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')}, namespace_packages=['zope',], - tests_require = ['zope_testing'], + tests_require = ['zope.testing'], install_requires=[.'pytz', - 'zope_component', - 'zope_deprecation', - 'zope_interface', - 'zope_schema', - 'zope_testing', + 'zope.component', + 'zope.deprecation', + 'zope.interface', + 'zope.schema', + 'zope.testing', ], include_package_data = True, _______________________________________________ Zope-CVS maillist - Zope-CVS [at] zope http://mail.zope.org/mailman/listinfo/zope-cvs Zope CVS instructions: http://dev.zope.org/CVS
|