From 0f98f5fe52d4bb86cc2de9670406d0dfb2044eb6 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Mon, 14 May 2012 15:57:29 +0530 Subject: [PATCH] Build if you have python 2.7 installed --- tools/marvin/setup.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index aa69738d50c..83c9c8a0a32 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -9,8 +9,8 @@ from sys import version if version < "2.7": print "Marvin needs at least python 2.7, found : \n%s"%version raise - - setup(name="Marvin", + +setup(name="Marvin", version="0.1.0", description="Marvin - Python client for testing cloudstack", author="Edison Su", @@ -23,8 +23,8 @@ if version < "2.7": packages=["marvin", "marvin.cloudstackAPI", "marvin.sandbox", "marvin.pymysql", "marvin.pymysql.constants", "marvin.pymysql.tests"], license="LICENSE.txt", install_requires=[ - "Python>=2.7", - "paramiko", - "nose" - ], - ) \ No newline at end of file + "Python>=2.7", + "paramiko", + "nose" + ], + )