openstack-nose/setup.py

34 lines
1.1 KiB
Python

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=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
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'],
)