Clark Boylan 7872e280a9 Fix versioning depending on nose.
Previously versioning depended on nose which broke setup.py if nose
was not already installed. Break version into its own module so that
it is not dependent on nose.
2012-08-08 10:37:26 -07:00

28 lines
901 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",
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'
]
}
)