1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
from setuptools import setup, find_packages
version = "0.11"
setup(name="openstack.nose_plugin",
version=version,
description="openstack run_tests.py style output for nosetests",
long_description=open("README.rst").read(),
classifiers=[],
keywords="nose",
author="Jason K\xc3\xb6lker",
author_email="jason@koelker.net",
url="https://github.com/jkoelker/openstack-nose",
license="Apache Software License",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
install_requires=[
"nose",
"colorama",
"termcolor",
],
entry_points="""
# -*- Entry points: -*-
[nose.plugins.0.10]
openstack.nose_plugin = openstack.nose_plugin:Openstack
""",
namespace_packages=['openstack'],
)
|