[Checkins] SVN: zope.app.annotation/trunk/setup.py Add a missing install_requires setuptools.

Sylvain Viollon sylvain at infrae.com
Thu Jan 29 06:56:28 EST 2009


Log message for revision 95418:
  Add a missing install_requires setuptools.
  
  

Changed:
  U   zope.app.annotation/trunk/setup.py

-=-
Modified: zope.app.annotation/trunk/setup.py
===================================================================
--- zope.app.annotation/trunk/setup.py	2009-01-29 11:53:38 UTC (rev 95417)
+++ zope.app.annotation/trunk/setup.py	2009-01-29 11:56:27 UTC (rev 95418)
@@ -47,10 +47,10 @@
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],
-      install_requires=[
-          'zope.annotation',
-          'zope.interface',
-          'zope.deprecation'],
+      install_requires=['setuptools',
+                        'zope.annotation',
+                        'zope.interface',
+                        'zope.deprecation'],
       include_package_data = True,
       zip_safe = False,
       )



More information about the Checkins mailing list