diff options
| author | Tres Seaver <tseaver@palladion.com> | 2006-03-14 00:01:43 +0000 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2006-03-14 00:01:43 +0000 |
| commit | 1378cf555c56d9e0380c46fbafe2e4b72a832536 (patch) | |
| tree | e1f076c2e0038d9cbac68899112cef232ab6ae38 /setup.py | |
| parent | b5b7b7946ad2ce9528b9a59d87de48b519321270 (diff) | |
| download | zope-component-1378cf555c56d9e0380c46fbafe2e4b72a832536.tar.gz | |
Fix copy errors.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 21 |
1 files changed, 9 insertions, 12 deletions
@@ -23,27 +23,24 @@ try: 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@zope.org', 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, |
