diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index 24df9198c91..d130fa369f6 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -27,8 +27,14 @@ else: url="http://jenkins.cloudstack.org:8080/job/marvin", packages=["marvin", "marvin.cloudstackAPI", "marvin.sandbox", "marvin.pymysql", "marvin.pymysql.constants", "marvin.pymysql.tests"], license="LICENSE.txt", - requires=[ - "paramiko (>1.4)", - "Python (>=2.7)" - ] + setup_requires=[ + "paramiko", + "Python", + "nose" + ], + install_requires=[ + "paramiko >1.4", + "Python >=2.7", + "nose >=0.9" + ] )