From a2ecc162cf5f7449c54833091c79e42d19cf32ae Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Fri, 12 Apr 2013 18:41:08 +0530 Subject: [PATCH] marvin_refactor: fix the setup.py for marvin to include factories Signed-off-by: Prasanna Santhanam --- tools/marvin/setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index eeed3bfa8fd..1132e446bca 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -44,14 +44,16 @@ setup(name="Marvin", platforms=("Any",), url="https://builds.apache.org/job/cloudstack-marvin/", packages=["marvin", "marvin.cloudstackAPI", "marvin.integration", - "marvin.integration.lib", "marvin.sandbox", + "marvin.integration.lib", "marvin.integration.lib.base", "marvin.integration.lib.factory", "marvin.sandbox.advanced", "marvin.sandbox.advancedsg", "marvin.sandbox.basic"], license="LICENSE.txt", install_requires=[ "mysql-connector-python", "requests", "paramiko", - "nose" + "nose", + "factory_boy", + "should-dsl" ], py_modules=['marvin.marvinPlugin'], zip_safe=False,