
tseaver at palladion
Mar 13, 2006, 4:33 PM
Post #1 of 1
(1557 views)
Permalink
|
|
SVN: zope.tal/trunk/ Fix copy errors.
|
|
Log message for revision 66002: Fix copy errors. Changed: U zope.tal/trunk/setup.py U zope.tal/trunk/test.py -=- Modified: zope.tal/trunk/setup.py =================================================================== --- zope.tal/trunk/setup.py 2006-03-14 00:13:50 UTC (rev 66001) +++ zope.tal/trunk/setup.py 2006-03-14 00:33:19 UTC (rev 66002) @@ -23,27 +23,25 @@ except ImportError, e: from distutils.core import setup, Extension -setup(name='zope.XXX', - version='1.0', - url='http://svn.zope.org/zope.XXX', +setup(name='zope.tal', + version='3.2', + url='http://svn.zope.org/zope.tal', license='ZPL 2.1', - description='XXX', + description='tal', author='Zope Corporation and Contributors', author_email='zope3-dev [at] zope', long_description='', - packages=['zope', 'zope.XXX'], + packages=['zope', 'zope.tal'], 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'], + install_requires=['zope.deprecation', + 'zope.i18n', + 'zope.i18nmessageid', + 'zope.interface', + ], include_package_data = True, zip_safe = False, Modified: zope.tal/trunk/test.py =================================================================== --- zope.tal/trunk/test.py 2006-03-14 00:13:50 UTC (rev 66001) +++ zope.tal/trunk/test.py 2006-03-14 00:33:19 UTC (rev 66002) @@ -28,7 +28,7 @@ defaults = [. '--path', src, - '--package', 'zope.i18nmessageid', + '--package', 'zope.tal', '--tests-pattern', '^tests$', ] _______________________________________________ Zope-CVS maillist - Zope-CVS [at] zope http://mail.zope.org/mailman/listinfo/zope-cvs Zope CVS instructions: http://dev.zope.org/CVS
|