Files
ansible-docs/hacking/pr_labeler/pyproject.toml
patchback[bot] c80ac3423a pr_labeler: fix error in pyproject.toml (#2432) (#2434)
The correct key-name is `build-backend`, not `backend`.

(cherry picked from commit c671fca04c)

Co-authored-by: Maxwell G <maxwell@gtmx.me>
2025-03-05 17:17:40 +00:00

28 lines
595 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ad-internal-pr-labeler"
description = "Internal package to triage ansible-documentation issues and PRs"
classifiers = [
# Internal package
"Private :: Do Not Upload",
]
version = "0"
requires-python = ">=3.9"
dynamic = ["dependencies"]
[project.scripts]
ad-triage = "pr_labeler.cli:APP"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools.packages.find]
where = ["."]
include = ["pr_labeler*"]
[tool.uv]
cache-keys = [{ file = "requirements.txt" }]