mirror of https://github.com/apache/cloudstack.git
30 lines
777 B
Python
30 lines
777 B
Python
import os
|
|
from setuptools import setup
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
|
|
|
|
VERSION = '0.1.0'
|
|
|
|
setup(
|
|
name = "marvin-nose",
|
|
version = VERSION,
|
|
author = "Prasanna Santhanam",
|
|
author_email = "Prasanna.Santhanam@citrix.com",
|
|
description = "Run tests written using CloudStack's Marvin testclient",
|
|
license = 'ASL 2.0',
|
|
classifiers = [
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Testing",
|
|
"Programming Language :: Python",
|
|
],
|
|
|
|
py_modules = ['marvinPlugin'],
|
|
zip_safe = False,
|
|
|
|
entry_points = {
|
|
'nose.plugins': ['marvinPlugin = marvinPlugin:MarvinPlugin']
|
|
},
|
|
install_requires = ['nose', 'marvin'],
|
|
)
|