[Checkins] SVN: zope.xmlpickle/trunk/s Initial commit of
zope.xmlpickle for eggification.
Alexander Heavner
alex at zope.com
Fri Feb 23 13:26:06 EST 2007
Log message for revision 72788:
Initial commit of zope.xmlpickle for eggification.
Changed:
A zope.xmlpickle/trunk/setup.py
A zope.xmlpickle/trunk/src/
A zope.xmlpickle/trunk/src/zope/
A zope.xmlpickle/trunk/src/zope/__init__.py
-=-
Added: zope.xmlpickle/trunk/setup.py
===================================================================
--- zope.xmlpickle/trunk/setup.py 2007-02-23 18:20:23 UTC (rev 72787)
+++ zope.xmlpickle/trunk/setup.py 2007-02-23 18:26:05 UTC (rev 72788)
@@ -0,0 +1,17 @@
+from setuptools import setup, find_packages
+
+setup(name='zope.xmlpickle',
+ version='0.1dev',
+ url='http://svn.zope.org/zope.xmlpickle',
+ license='ZPL 2.1',
+ description='Zope xmlpickle',
+ author='Zope Corporation and Contributors',
+ author_email='zope3-dev at zope.org',
+ packages=find_packages('src'),
+ package_dir = {'': 'src'},
+
+ namespace_packages=['zope',],
+ include_package_data = True,
+
+ zip_safe = False,
+ )
Property changes on: zope.xmlpickle/trunk/src/zope
___________________________________________________________________
Name: svn:externals
+ xmlpickle svn://svn.zope.org/repos/main/Zope3/trunk/src/zope/xmlpickle
Added: zope.xmlpickle/trunk/src/zope/__init__.py
===================================================================
--- zope.xmlpickle/trunk/src/zope/__init__.py 2007-02-23 18:20:23 UTC (rev 72787)
+++ zope.xmlpickle/trunk/src/zope/__init__.py 2007-02-23 18:26:05 UTC (rev 72788)
@@ -0,0 +1,7 @@
+# this is a namespace package
+try:
+ import pkg_resources
+ pkg_resources.declare_namespace(__name__)
+except ImportError:
+ import pkgutil
+ __path__ = pkgutil.extend_path(__path__, __name__)
More information about the Checkins
mailing list