[Checkins] SVN: zc.notification/trunk/s Added the setup.py file in
order to 'eggify' the package
Alexander Heavner
alex at zope.com
Thu Feb 8 16:04:30 EST 2007
Log message for revision 72474:
Added the setup.py file in order to 'eggify' the package
Added the __init__.py file in order to make 'zc' a namespace
Changed:
A zc.notification/trunk/setup.py
A zc.notification/trunk/src/zc/__init__.py
-=-
Added: zc.notification/trunk/setup.py
===================================================================
--- zc.notification/trunk/setup.py 2007-02-08 20:49:55 UTC (rev 72473)
+++ zc.notification/trunk/setup.py 2007-02-08 21:04:29 UTC (rev 72474)
@@ -0,0 +1,12 @@
+from setuptools import setup, find_packages
+
+setup(
+ name="zc.notification",
+ version="0.1dev",
+ packages=find_packages('src'),
+ package_dir={'':'src'},
+ namespace_packages=['zc'],
+ include_package_data=True,
+ install_requirements = ['setuptools'],
+ zip_safe = False
+ )
Added: zc.notification/trunk/src/zc/__init__.py
===================================================================
--- zc.notification/trunk/src/zc/__init__.py 2007-02-08 20:49:55 UTC (rev 72473)
+++ zc.notification/trunk/src/zc/__init__.py 2007-02-08 21:04:29 UTC (rev 72474)
@@ -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