mirror of https://github.com/apache/cloudstack.git
marvin_refactor: allow the nose plugin to load
include deployer module in the packaging and correct cloudstackAPI import to use absolute imports Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
parent
ef0b08e21a
commit
70a9d3eb57
|
|
@ -20,7 +20,7 @@ import logging
|
|||
import configGenerator
|
||||
from os import path
|
||||
from time import sleep
|
||||
from cloudstackAPI import *
|
||||
from marvin.cloudstackAPI import *
|
||||
from optparse import OptionParser
|
||||
from marvin import cloudstackTestClient
|
||||
from marvin import cloudstackException
|
||||
|
|
|
|||
|
|
@ -42,9 +42,11 @@ setup(name="Marvin",
|
|||
maintainer_email="tsp@apache.org",
|
||||
long_description="Marvin is the Apache CloudStack python client written around the unittest framework",
|
||||
platforms=("Any",),
|
||||
packages=["marvin", "marvin.cloudstackAPI", "marvin.entity", "marvin.factory", "marvin.factory.data",
|
||||
"marvin.generate", "marvin.legacy", "marvin.sandbox", "marvin.sandbox.advanced",
|
||||
"marvin.sandbox.advancedsg", "marvin.sandbox.basic"],
|
||||
packages=["marvin", "marvin.cloudstackAPI",
|
||||
"marvin.deployer", "marvin.entity", "marvin.factory", "marvin.factory.data",
|
||||
"marvin.generate", "marvin.legacy",
|
||||
"marvin.sandbox", "marvin.sandbox.advanced", "marvin.sandbox.advancedsg", "marvin.sandbox.basic",
|
||||
"marvin.test"],
|
||||
license="LICENSE.txt",
|
||||
install_requires=[
|
||||
"mysql-connector-python",
|
||||
|
|
|
|||
Loading…
Reference in New Issue