summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2006-03-14 00:01:43 +0000
committerTres Seaver <tseaver@palladion.com>2006-03-14 00:01:43 +0000
commit1378cf555c56d9e0380c46fbafe2e4b72a832536 (patch)
treee1f076c2e0038d9cbac68899112cef232ab6ae38 /setup.py
parentb5b7b7946ad2ce9528b9a59d87de48b519321270 (diff)
downloadzope-component-1378cf555c56d9e0380c46fbafe2e4b72a832536.tar.gz
Fix copy errors.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py21
1 files changed, 9 insertions, 12 deletions
diff --git a/setup.py b/setup.py
index c691700..70f05fb 100644
--- a/setup.py
+++ b/setup.py
@@ -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,