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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pygitweb_pytesthtml"
version = "0.1.0"
description = "PyGitWeb Plugin: pytest-html dashboard"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pygitweb",
"pytest-html>=4.2.0",
]
[project.entry-points."pygitweb.subpages"]
pytesthtml = "pygitweb_pytesthtml.subpage_pytesthtml:SubpagePytestHtml"
[project.entry-points."pygitweb.actions"]
pytesthtml_run = "pygitweb_pytesthtml.action_pytesthtml:ActionPytestHtml"
[tool.setuptools.packages.find]
where = ["."]
include = ["pygitweb_pytesthtml*"]