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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=77",
"setuptools-scm[toml]>=6.2.3",
]
[project]
name = "unittest-xml-reporting"
license = "BSD-2-Clause"
license-files = [ "LICENSE" ]
dynamic = [
"version",
]
description = "unittest-based test runner with Ant/JUnit like XML reporting."
keywords = [
"pyunit",
"unittest",
"junit xml",
"xunit",
"report",
"testrunner",
"xmlrunner",
]
readme = "README.md"
authors = [
{name = "Daniel Fernandes Martins"},
{name = "Damien Nozay"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
requires-python = ">=3.10"
dependencies = [
"lxml",
]
[project.urls]
Homepage = "http://github.com/xmlrunner/unittest-xml-reporting/tree/master/"
[tool.setuptools_scm]
write_to = "xmlrunner/version.py"
[tool.distutils.bdist_wheel]
universal = 1
python-tag = "py3"
|