mirror of https://github.com/apache/cloudstack.git
CS-14025: provide python eggs to easily install the python test framework
CS-14025: Status - Resolved Fixed 1. Packaging the marvin test client into an installable egg 2. There is a hudson job (marvin) that creates eggs for a specified branch 3. Alternatively you can use the package-marvin ant target to get a source tarball.
This commit is contained in:
parent
6857750566
commit
0bd43e7cf5
|
|
@ -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"
|
||||
]
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue