[Zope3-checkins] SVN: zope.testing/trunk/ Added develop.py and supporting external declaration; updated setup.[py|cfg] to support project workspace checkout.

Nathan Yergler nathan at yergler.net
Thu Mar 2 11:28:59 EST 2006


Log message for revision 65736:
  Added develop.py and supporting external declaration; updated setup.[py|cfg] to support project workspace checkout.

Changed:
  _U  zope.testing/trunk/
  A   zope.testing/trunk/develop.py
  A   zope.testing/trunk/setup.cfg
  U   zope.testing/trunk/setup.py

-=-

Property changes on: zope.testing/trunk
___________________________________________________________________
Name: svn:externals
   + workspace svn://svn.zope.org/repos/main/projectsupport/trunk/src/workspace


Copied: zope.testing/trunk/develop.py (from rev 65733, zope.deprecation/trunk/develop.py)

Copied: zope.testing/trunk/setup.cfg (from rev 65733, zope.deprecation/trunk/setup.cfg)
===================================================================
--- zope.deprecation/trunk/setup.cfg	2006-03-02 16:03:42 UTC (rev 65733)
+++ zope.testing/trunk/setup.cfg	2006-03-02 16:28:59 UTC (rev 65736)
@@ -0,0 +1,6 @@
+[development]
+depends = 
+
+[egg_info]
+tag_build = .dev
+tag_svn_revision = 1

Modified: zope.testing/trunk/setup.py
===================================================================
--- zope.testing/trunk/setup.py	2006-03-02 16:20:56 UTC (rev 65735)
+++ zope.testing/trunk/setup.py	2006-03-02 16:28:59 UTC (rev 65736)
@@ -16,6 +16,8 @@
 $Id$
 """
 
+import os
+
 try:
     from setuptools import setup
 except ImportException, e:
@@ -30,8 +32,8 @@
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       
+      package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
       packages=["zope", "zope.testing"],
-      package_dir = {'': 'src'},
 
       include_package_data = True,
       zip_safe = False,



More information about the Zope3-Checkins mailing list