[Checkins] SVN: zope.interface/trunk/ clean up egg support stuff

Fred L. Drake, Jr. fdrake at gmail.com
Wed Sep 6 14:28:17 EDT 2006


Log message for revision 70010:
  clean up egg support stuff

Changed:
  _U  zope.interface/trunk/
  D   zope.interface/trunk/develop.py
  D   zope.interface/trunk/setup.cfg.in
  U   zope.interface/trunk/setup.py
  D   zope.interface/trunk/test.py

-=-

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


Deleted: zope.interface/trunk/develop.py
===================================================================
--- zope.interface/trunk/develop.py	2006-09-06 18:24:11 UTC (rev 70009)
+++ zope.interface/trunk/develop.py	2006-09-06 18:28:16 UTC (rev 70010)
@@ -1,21 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Workspace configuration wrapper script
-
-$Id$
-"""
-
-import workspace.develop
-
-workspace.develop.main()

Deleted: zope.interface/trunk/setup.cfg.in
===================================================================
--- zope.interface/trunk/setup.cfg.in	2006-09-06 18:24:11 UTC (rev 70009)
+++ zope.interface/trunk/setup.cfg.in	2006-09-06 18:28:16 UTC (rev 70010)
@@ -1,2 +0,0 @@
-[development]
-depends = zope.testing

Modified: zope.interface/trunk/setup.py
===================================================================
--- zope.interface/trunk/setup.py	2006-09-06 18:24:11 UTC (rev 70009)
+++ zope.interface/trunk/setup.py	2006-09-06 18:28:16 UTC (rev 70010)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2004-2006 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -22,7 +22,7 @@
     from setuptools import setup, Extension
 except ImportError, e:
     from distutils.core import setup, Extension
-    
+
 setup(name='zope.interface',
       version='3.3-dev',
 
@@ -31,7 +31,7 @@
       description='Zope 3 Interface Infrastructure',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      
+
       packages=["zope",
                 "zope.interface",
                 "zope.interface.common",

Deleted: zope.interface/trunk/test.py
===================================================================
--- zope.interface/trunk/test.py	2006-09-06 18:24:11 UTC (rev 70009)
+++ zope.interface/trunk/test.py	2006-09-06 18:28:16 UTC (rev 70010)
@@ -1,37 +0,0 @@
-#!/usr/bin/env python
-##############################################################################
-#
-# Copyright (c) 2004 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Sample test script using zope.testing.testrunner
-
-see zope.testing testrunner.txt
-
-$Id$
-"""
-
-import os, sys
-
-src = os.path.join(os.path.split(sys.argv[0])[0], 'src')
-
-sys.path.insert(0, src) # put at beginning to avoid one in site_packages
-
-from zope.testing import testrunner
-
-defaults = [
-    '--path', src,
-    '--package', 'zope.interface',
-    '--tests-pattern', '^tests$',
-    ]
-
-sys.exit(testrunner.run(defaults))
-



More information about the Checkins mailing list