Remove nose from setup_requires

It's not really a setup_require. nose is not needed to run setup.py.

Change-Id: Ib2e22fe1be40a1feeca4bf7d35ed1797bdb10de8
This commit is contained in:
Monty Taylor 2013-08-08 13:20:10 -03:00
parent 0175fc84d8
commit 4b8840d96d
2 changed files with 3 additions and 4 deletions

View File

@ -1 +1 @@
__version__ = '0.0.4'
__version__ = '0.0.5'

View File

@ -7,9 +7,8 @@ setuptools.setup(
author='Hewlett-Packard Development Company, L.P.',
description="Nose plugin to produce test results in html.",
license="Apache License, Version 2.0",
url="https://github.com/cboylan/nose-html-output",
url="https://github.com/openstack-infra/nose-html-output",
packages=["htmloutput"],
setup_requires=['nose'],
install_requires=['nose'],
classifiers=[
"Environment :: Console",
@ -20,7 +19,7 @@ setuptools.setup(
"Operating System :: OS Independent",
"Programming Language :: Python"
],
entry_points = {
entry_points={
'nose.plugins.0.10': [
'html-output = htmloutput.htmloutput:HtmlOutput'
]