From ab57aeb7bc3c56c97067608b1309f8afa49fb482 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Thu, 3 May 2012 13:08:25 +0530 Subject: [PATCH] The setup_requires must not co-exists with install_requires --- tools/marvin/setup.py | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index d130fa369f6..d85950fc54e 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -27,14 +27,9 @@ 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", - setup_requires=[ - "paramiko", - "Python", - "nose" - ], install_requires=[ - "paramiko >1.4", - "Python >=2.7", - "nose >=0.9" - ] - ) + "Python>=2.7", + "paramiko", + "nose" + ], + ) \ No newline at end of file