[Checkins] SVN: cmf.pt/trunk/ Added a ``z3c.autoinclude.plugin`` entry point to avoid the need for a ZCML slug in Plone.

Hanno Schlichting hannosch at hannosch.eu
Sun Oct 25 09:52:38 EDT 2009


Log message for revision 105264:
  Added a ``z3c.autoinclude.plugin`` entry point to avoid the need for a ZCML slug in Plone.
  

Changed:
  U   cmf.pt/trunk/CHANGES.txt
  U   cmf.pt/trunk/setup.py

-=-
Modified: cmf.pt/trunk/CHANGES.txt
===================================================================
--- cmf.pt/trunk/CHANGES.txt	2009-10-25 13:24:02 UTC (rev 105263)
+++ cmf.pt/trunk/CHANGES.txt	2009-10-25 13:52:38 UTC (rev 105264)
@@ -1,9 +1,12 @@
 Changelog
 =========
 
-0.6 - unreleased
+0.6 - 2009-10-25
 ----------------
 
+- Added a ``z3c.autoinclude.plugin`` entry point to avoid the need for a ZCML
+  slug in Plone.
+  [hannosch]
 
 0.5 - 2009-07-24
 ----------------

Modified: cmf.pt/trunk/setup.py
===================================================================
--- cmf.pt/trunk/setup.py	2009-10-25 13:24:02 UTC (rev 105263)
+++ cmf.pt/trunk/setup.py	2009-10-25 13:52:38 UTC (rev 105264)
@@ -1,12 +1,13 @@
 from setuptools import setup, find_packages
 
-version = '0.6dev'
+version = '0.6'
 
 setup(name='cmf.pt',
       version=version,
       description="Bridge to use Chameleon with Zope 2 and CMF.",
       long_description=open("README.txt").read() + open("CHANGES.txt").read(),
       classifiers=[
+        "Framework :: Plone",
         "Framework :: Zope2",
         "Programming Language :: Python",
         "Topic :: Text Processing :: Markup :: HTML",
@@ -27,4 +28,8 @@
           'z3c.pt>=1.0b7',
           'five.pt',
       ],
+      entry_points="""
+      [z3c.autoinclude.plugin]
+      target = plone
+      """,
       )



More information about the checkins mailing list