-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 957 Bytes
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
[build-system]
requires = ["uv_build>=0.11.7,<0.12.0"]
build-backend = "uv_build"
[project]
name = "junitparser"
version = "5.0.1a1"
authors = [
{ name="Weiwei Wang", email="gastlygem@gmail.com" },
]
description = "Manipulates JUnit/xUnit Result XML files"
readme = "README.rst"
requires-python = ">=3.10"
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Text Processing",
"Programming Language :: Python :: 3",
]
license = "Apache-2.0"
license-files = ["LICENSE"]
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"
[dependency-groups]
dev = [
"pre-commit>=4.6.0",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"ruff>=0.15.12",
]