[Zope-CVS] SVN: zope.i18n/trunk/setup.py Package names can't embed dots.

Tres Seaver tseaver at palladion.com
Mon Mar 13 17:11:25 EST 2006


Log message for revision 65968:
  Package names can't embed dots.

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

-=-
Modified: zope.i18n/trunk/setup.py
===================================================================
--- zope.i18n/trunk/setup.py	2006-03-13 22:10:19 UTC (rev 65967)
+++ zope.i18n/trunk/setup.py	2006-03-13 22:11:25 UTC (rev 65968)
@@ -23,27 +23,27 @@
 except ImportError, e:
     from distutils.core import setup, Extension
 
-setup(name='zope.XXX',
+setup(name='zope_i18n',
       version='1.0',
-      url='http://svn.zope.org/zope.XXX',
+      url='http://svn.zope.org/zope.i18n',
       license='ZPL 2.1',
-      description='XXX',
+      description='Zope3 Internationalization Support',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       long_description='',
       
-      packages=['zope', 'zope.XXX'],
+      packages=['zope', 'zope.i18n'],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
 
-##       ext_modules=[Extension("zope.XXX._zope_XXX",
-##                              [os.path.join('src', 'zope', 'XXX',
-##                                            "_zope_XXX.c")
-##                               ]),
-##                    ],
-
       namespace_packages=['zope',],
-      tests_require = ['zope.testing'],
-      install_requires=['zope.deprecation'],
+      tests_require = ['zope_testing'],
+      install_requires=['pytz',
+                        'zope_component',
+                        'zope_deprecation',
+                        'zope_interface',
+                        'zope_schema',
+                        'zope_testing',
+                       ],
       include_package_data = True,
 
       zip_safe = False,



More information about the Zope-CVS mailing list