summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2006-04-15 17:33:48 +0000
committerTres Seaver <tseaver@palladion.com>2006-04-15 17:33:48 +0000
commitaf582f0bf9088dd71cad2cda0560a5567d7747d1 (patch)
treea86eff32739de17b485ec96aa3c6efd38f22971e
parent81da8aecf4135a097bfb06e0bfbbf66d044c37f9 (diff)
downloadzope-security-af582f0bf9088dd71cad2cda0560a5567d7747d1.tar.gz
'package_dir' must be a relative path.
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 42d3d4a..2148f57 100644
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@ except ImportError, e:
from distutils.core import setup, Extension
setup(name='zope.security',
- version='1.0',
+ version='3.3-dev',
url='http://svn.zope.org/zope.security',
license='ZPL 2.1',
description='Zope3 Security Architecture',
@@ -37,7 +37,7 @@ setup(name='zope.security',
'zope.security',
'zope.security.untrustedpython',
],
- package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
+ package_dir = {'': 'src'},
ext_modules=[Extension("zope.security._proxy",
[os.path.join('src', 'zope', 'security',