[Checkins] SVN: zc.zope3recipes/trunk/ - Cleanup

Baiju M baiju.m.mail at gmail.com
Thu Feb 21 11:09:42 EST 2008


Log message for revision 84117:
   - Cleanup
   - Remove 'dependency_links'
   - Remove unused import
  

Changed:
  U   zc.zope3recipes/trunk/setup.py
  U   zc.zope3recipes/trunk/zc/zope3recipes/tests.py

-=-
Modified: zc.zope3recipes/trunk/setup.py
===================================================================
--- zc.zope3recipes/trunk/setup.py	2008-02-21 15:19:28 UTC (rev 84116)
+++ zc.zope3recipes/trunk/setup.py	2008-02-21 16:09:42 UTC (rev 84117)
@@ -13,7 +13,7 @@
     description = "ZC Buildout recipe for defining Zope 3 applications",
     license = "ZPL 2.1",
     keywords = "zope3 buildout",
-    url='http://cheeseshop.python.org/pypi/'+name,
+    url='http://pypi.python.org/pypi/'+name,
     long_description = (
         read('README.txt')
         + '\n' +
@@ -27,11 +27,9 @@
         ),
     packages = find_packages('.'),
     include_package_data = True,
-    #package_dir = {'':'src'},
     namespace_packages = ['zc'],
     install_requires = ['zc.buildout', 'zope.testing', 'setuptools',
                         'zc.recipe.egg', 'ZConfig >=2.4a5'],
-    dependency_links = ['http://download.zope.org/distribution/'],
     entry_points = {
         'zc.buildout': [
              'application = %s.recipes:Application' % name,

Modified: zc.zope3recipes/trunk/zc/zope3recipes/tests.py
===================================================================
--- zc.zope3recipes/trunk/zc/zope3recipes/tests.py	2008-02-21 15:19:28 UTC (rev 84116)
+++ zc.zope3recipes/trunk/zc/zope3recipes/tests.py	2008-02-21 16:09:42 UTC (rev 84117)
@@ -12,13 +12,11 @@
 #
 ##############################################################################
 
-import os, re, shutil, sys, tempfile
-import pkg_resources
+import re, sys
 
 import zc.buildout.testing
 
 import unittest
-import zope.testing
 from zope.testing import doctest, renormalizing
 
 



More information about the Checkins mailing list