
tseaver at palladion
Mar 13, 2006, 4:01 PM
Post #1 of 1
(1384 views)
Permalink
|
|
SVN: zope.component/trunk/setup.py Fix copy errors.
|
|
Log message for revision 65996: Fix copy errors. Changed: U zope.component/trunk/setup.py -=- Modified: zope.component/trunk/setup.py =================================================================== --- zope.component/trunk/setup.py 2006-03-13 23:45:04 UTC (rev 65995) +++ zope.component/trunk/setup.py 2006-03-14 00:01:43 UTC (rev 65996) @@ -23,27 +23,24 @@ 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.component', + version='3.0', + url='http://svn.zope.org/zope.component', license='ZPL 2.1', - description='XXX', + description='component', author='Zope Corporation and Contributors', author_email='zope3-dev [at] zope', long_description='', - packages=['zope', 'zope.XXX'], + packages=['zope', 'zope.component'], 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.exceptions', + 'zope.interface', + ], include_package_data = True, zip_safe = False, _______________________________________________ Zope-CVS maillist - Zope-CVS [at] zope http://mail.zope.org/mailman/listinfo/zope-cvs Zope CVS instructions: http://dev.zope.org/CVS
|