Description: Avoid runtime issues with missing setuptools
 As explained by Jakub Wilk in the Debian bug report, setuptools are
 only needed during the package build, so strip it from the runtime
 dependencies.
Author: Cyril Brulebois <kibi@debian.org>
Bug-Debian: http://bugs.debian.org/659232
--- a/src/funkload.egg-info/requires.txt
+++ b/src/funkload.egg-info/requires.txt
@@ -1,3 +1,2 @@
 webunit  >= 1.3.8
 docutils >= 0.3.7
-setuptools
\ No newline at end of file
--- a/setup.py
+++ b/setup.py
@@ -150,8 +150,7 @@
     ],
     # setuptools specific keywords
     install_requires = ['webunit  >= 1.3.8',
-                        'docutils >= 0.3.7',
-                        'setuptools'],
+                        'docutils >= 0.3.7'],
     zip_safe=True,
     package_data={'funkload': ['data/*',
                                'demo/simple/*', 'demo/zope/*',
