0a97b65254
setup.py didn't have a package list and wasn't actually installing anything other than the entrypoint. Fix that and actually install the package.
29 lines
930 B
Python
29 lines
930 B
Python
import htmloutput.version
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name="nosehtmloutput",
|
|
version=htmloutput.version.__version__,
|
|
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",
|
|
packages=["htmloutput"],
|
|
setup_requires=['nose'],
|
|
install_requires=['nose'],
|
|
classifiers=[
|
|
"Environment :: Console",
|
|
"Topic :: Software Development :: Testing",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Information Technology",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python"
|
|
],
|
|
entry_points = {
|
|
'nose.plugins.0.10': [
|
|
'html-output = htmloutput.htmloutput:HtmlOutput'
|
|
]
|
|
}
|
|
)
|