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
|
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "junitparser"
dynamic = ["version"]
authors = [
{ name="Weiwei Wang", email="gastlygem@gmail.com" },
]
description = "Manipulates JUnit/xUnit Result XML files"
readme = "README.rst"
requires-python = ">=3.6"
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Text Processing",
"Programming Language :: Python :: 3",
]
license = {text = "Apache-2.0"}
keywords = ["junit", "xunit", "xml", "parser"]
[project.urls]
Homepage = "https://github.com/weiwei/junitparser"
Issues = "https://github.com/weiwei/junitparser/issues"
Documentation = "https://junitparser.readthedocs.io/"
[project.scripts]
junitparser = "junitparser.cli:main"
[tool.setuptools]
packages = ["junitparser"]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
version = {attr = "junitparser.version"}
|