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:
parent
0175fc84d8
commit
4b8840d96d
@ -1 +1 @@
|
|||||||
__version__ = '0.0.4'
|
__version__ = '0.0.5'
|
||||||
|
5
setup.py
5
setup.py
@ -7,9 +7,8 @@ setuptools.setup(
|
|||||||
author='Hewlett-Packard Development Company, L.P.',
|
author='Hewlett-Packard Development Company, L.P.',
|
||||||
description="Nose plugin to produce test results in html.",
|
description="Nose plugin to produce test results in html.",
|
||||||
license="Apache License, Version 2.0",
|
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"],
|
packages=["htmloutput"],
|
||||||
setup_requires=['nose'],
|
|
||||||
install_requires=['nose'],
|
install_requires=['nose'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
@ -20,7 +19,7 @@ setuptools.setup(
|
|||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
"Programming Language :: Python"
|
"Programming Language :: Python"
|
||||||
],
|
],
|
||||||
entry_points = {
|
entry_points={
|
||||||
'nose.plugins.0.10': [
|
'nose.plugins.0.10': [
|
||||||
'html-output = htmloutput.htmloutput:HtmlOutput'
|
'html-output = htmloutput.htmloutput:HtmlOutput'
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user