generated from cicirello/python-github-action-template
-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
pyproject.toml
53 lines (50 loc) · 1.36 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jacoco-badge-generator"
version = "2.11.0"
authors = [
{ name="Vincent A. Cicirello", email="[email protected]" },
]
description = "JaCoCo coverage badges (SVG format), and coverage checks (e.g., decreasing coverage and minimum coverage)"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
]
keywords = [
"badges",
"badge generator",
"branches coverage",
"C0 coverage",
"C1 coverage",
"coverage",
"coverage reports",
"instructions coverage",
"jacoco",
"Java",
"JVM",
"Kotlin",
"Scala",
"testing",
]
[project.urls]
"Information Page" = "https://actions.cicirello.org/jacoco-badge-generator/"
"GitHub Repository" = "https://github.com/cicirello/jacoco-badge-generator"
"Bug Tracker" = "https://github.com/cicirello/jacoco-badge-generator/issues"
"Changelog" = "https://github.com/cicirello/jacoco-badge-generator/blob/main/CHANGELOG.md"
[tool.hatch.build]
exclude = [
"/.github",
"/images",
"/src/entrypoint.py",
"/tests",
"/.dockerignore",
"/action.yml",
"/Dockerfile",
]