[Checkins] SVN: zc.rebootstrap/trunk/setup.py Fixed up setup. (Checking in changes made a while ago.)

Jim Fulton jim at zope.com
Sun Jun 10 10:06:49 EDT 2007


Log message for revision 76580:
  Fixed up setup. (Checking in changes made a while ago.)
  

Changed:
  U   zc.rebootstrap/trunk/setup.py

-=-
Modified: zc.rebootstrap/trunk/setup.py
===================================================================
--- zc.rebootstrap/trunk/setup.py	2007-06-10 12:46:58 UTC (rev 76579)
+++ zc.rebootstrap/trunk/setup.py	2007-06-10 14:06:48 UTC (rev 76580)
@@ -1,19 +1,26 @@
 kw = dict(
     name="zc.rebootstrap",
-    version="0.2",
+    version="0.2.2",
     author="Zope Corporation and Contributors",
     author_email="zope3-dev at zope.org",
     url="http://svn.zope.org/zc.rebootstrap",
     description=(
         "Helper package to re-bootstrap packages for RPM construction."),
-    packages=["zc.rebootstrap"],
+    packages=["zc", "zc.rebootstrap"],
     package_dir={"": "src"},
     )
 
+entry_points = """
+[zc.buildout]
+default = zc.rebootstrap.bootstrap:Recipe
+"""
+
 try:
     from setuptools import setup
     kw["namespace_packages"] = ["zc"]
     kw["zip_safe"] = True
+    kw['entry_points'] = entry_points
+    kw['namespace_packages'] = ['zc']
 except ImportError:
     from distutils.core import setup
     kw["packages"].insert(0, "zc")



More information about the Checkins mailing list