The setup_requires must not co-exists with install_requires

This commit is contained in:
Prasanna Santhanam 2012-05-03 13:08:25 +05:30
parent 838d01754b
commit ab57aeb7bc
1 changed files with 5 additions and 10 deletions

View File

@ -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"
],
)