mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-26 13:18:58 +07:00
The correct key-name is `build-backend`, not `backend`.
(cherry picked from commit c671fca04c)
Co-authored-by: Maxwell G <maxwell@gtmx.me>
28 lines
595 B
TOML
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" }]
|