From b90414e2d269c9c296652c615ba41fcd0b5610f3 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 3 Jan 2014 11:10:52 -0500 Subject: [PATCH] Add missing dependencies webob is used by the metadata service python-novaclient is used to talk to nova --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3d99db62..a2adb083 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,9 @@ setup( 'httplib2>=0.7.2', 'python-neutronclient>=2.1', 'oslo.config', - 'kombu>=2.4.8' + 'kombu>=2.4.8', + 'webob', + 'python-novaclient', ], namespace_packages=['akanda'], packages=find_packages(exclude=['test']),