diff --git a/moksha.common/setup.py b/moksha.common/setup.py index a56f294a..862b5fc4 100644 --- a/moksha.common/setup.py +++ b/moksha.common/setup.py @@ -46,6 +46,7 @@ "decorator", "pytz", "kitchen", + "setuptools", # needed for pkg_resources ], classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/moksha.feeds/setup.py b/moksha.feeds/setup.py index a42464c3..5eef1d1d 100644 --- a/moksha.feeds/setup.py +++ b/moksha.feeds/setup.py @@ -34,6 +34,7 @@ "shove <= 0.3.3", "feedcache", "feedparser", + "setuptools", # needed for pkg_resources ], packages=find_packages(exclude=['ez_setup']), include_package_data=True, diff --git a/moksha.hub/setup.py b/moksha.hub/setup.py index ea996398..1eef5699 100644 --- a/moksha.hub/setup.py +++ b/moksha.hub/setup.py @@ -32,6 +32,9 @@ "txWS", #"python-daemon", + # Needed for pkg_resources + "setuptools", + # Optional #"service_identity", #"pyasn1", diff --git a/moksha.wsgi/setup.py b/moksha.wsgi/setup.py index a5813bb6..6ee9f6a5 100644 --- a/moksha.wsgi/setup.py +++ b/moksha.wsgi/setup.py @@ -61,6 +61,9 @@ # Needed for the source code widget. "pygments", + + # Needed for pkg_resources + "setuptools", ], packages=find_packages(exclude=['ez_setup']), include_package_data=True,