[Zope3-checkins] SVN: zope.testing/trunk/setup.py 'package_dir' must be a relative path.

Tres Seaver tseaver at palladion.com
Sat Apr 15 14:16:05 EDT 2006


Log message for revision 67048:
  'package_dir' must be a relative path.

Changed:
  U   zope.testing/trunk/setup.py

-=-
Modified: zope.testing/trunk/setup.py
===================================================================
--- zope.testing/trunk/setup.py	2006-04-15 18:15:25 UTC (rev 67047)
+++ zope.testing/trunk/setup.py	2006-04-15 18:16:04 UTC (rev 67048)
@@ -24,7 +24,7 @@
     from distutils.core import setup
     
 setup(name='zope.testing',
-      version='1.0',
+      version='3.0-dev',
 
       url='http://svn.zope.org/zope.testing',
       license='ZPL 2.1',
@@ -32,7 +32,7 @@
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       
-      package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
+      package_dir = {'': 'src'},
       packages=["zope", "zope.testing"],
 
       include_package_data = True,



More information about the Zope3-Checkins mailing list