
Our official git master is at git.openstack.org, update places that use github instead. Change-Id: Ib18163432d6da6521f19b5e3820ffc67501c900d
28 lines
919 B
Python
28 lines
919 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://git.openstack.org/cgit/openstack-infra/nose-html-output",
|
|
packages=["htmloutput"],
|
|
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'
|
|
]
|
|
}
|
|
)
|