[Checkins] SVN: Zope3/trunk/src/zope/annotation/setup.py Added
setup.py in order to 'eggify' the package
Alexander Heavner
alex at zope.com
Mon Feb 12 16:36:32 EST 2007
Log message for revision 72507:
Added setup.py in order to 'eggify' the package
Changed:
A Zope3/trunk/src/zope/annotation/setup.py
-=-
Added: Zope3/trunk/src/zope/annotation/setup.py
===================================================================
--- Zope3/trunk/src/zope/annotation/setup.py 2007-02-12 20:09:03 UTC (rev 72506)
+++ Zope3/trunk/src/zope/annotation/setup.py 2007-02-12 21:36:31 UTC (rev 72507)
@@ -0,0 +1,9 @@
+from setuptools import setup, find_packages
+
+setup(
+ name="annotation",
+ version="0.1dev",
+ include_package_data=True,
+ install_requirements = ['setuptools'],
+ zip_safe = False
+ )
More information about the Checkins
mailing list