[Checkins] SVN: z3c.blobfile/trunk/src/z3c/__init__.py - buildoutify/eggify

Grégoire Weber zope.org at incept.ch
Sat Nov 10 07:56:13 EST 2007


Log message for revision 81706:
  - buildoutify/eggify

Changed:
  A   z3c.blobfile/trunk/src/z3c/__init__.py

-=-
Added: z3c.blobfile/trunk/src/z3c/__init__.py
===================================================================
--- z3c.blobfile/trunk/src/z3c/__init__.py	                        (rev 0)
+++ z3c.blobfile/trunk/src/z3c/__init__.py	2007-11-10 12:56:13 UTC (rev 81706)
@@ -0,0 +1,22 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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.
+#
+##############################################################################
+"""
+$Id$
+"""
+try:
+    # Declare this a namespace package if pkg_resources is available.
+    import pkg_resources
+    pkg_resources.declare_namespace('z3c')
+except ImportError:
+    pass



More information about the Checkins mailing list