1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
[metadata]
name = junit2html
version = 31.0.5
description = Generate HTML reports from Junit results
long_description = Genearate a single file HTML report from a Junit or XUnit XML results file
author = Ian Norton
author_email = inorton@gmail.com
url = https://gitlab.com/inorton/junit2html
license = License :: OSI Approved :: MIT License
[options]
platforms =
any
python_requires = >= 3.8
install_requires =
jinja2>=3.0
include_package_data = True
packages =
junit2htmlreport
[options.package_data]
junit2htmlreport =
templates/**/*.css
templates/**/*.html
[options.entry_points]
console_scripts =
junit2html = junit2htmlreport.runner:start
|