[Checkins] SVN: zc.recipe.zope3checkout/trunk/setup.py Refactored slightly to reduce duplication.

Jim Fulton jim at zope.com
Wed Jun 28 19:14:42 EDT 2006


Log message for revision 68897:
  Refactored slightly to reduce duplication.
  

Changed:
  U   zc.recipe.zope3checkout/trunk/setup.py

-=-
Modified: zc.recipe.zope3checkout/trunk/setup.py
===================================================================
--- zc.recipe.zope3checkout/trunk/setup.py	2006-06-28 23:09:40 UTC (rev 68896)
+++ zc.recipe.zope3checkout/trunk/setup.py	2006-06-28 23:14:41 UTC (rev 68897)
@@ -11,7 +11,7 @@
     long_description = open('README.txt').read(),
     license = "ZPL 2.1",
     keywords = "zope3 buildout",
-    url='http://svn.zope.org/zc.recipe.zope3checkout',
+    url='http://svn.zope.org/'+name,
     classifiers = [
         'Framework :: Buildout',
         'License :: OSI Approved :: Zope Public License',
@@ -21,8 +21,7 @@
     include_package_data = True,
     package_dir = {'':'src'},
     namespace_packages = ['zc', 'zc.recipe'],
-    install_requires = ['zc.buildout', 'zope.testing', 'setuptools'],
+    install_requires = ['zc.buildout', 'setuptools'],
     dependency_links = ['http://download.zope.org/distribution/'],
-    entry_points = {'zc.buildout':
-                    ['default = zc.recipe.zope3checkout:Zope3Checkout']},
+    entry_points = {'zc.buildout': ['default = %s:Recipe' % name]},
     )



More information about the Checkins mailing list