Files
u-boot/tools/buildman/pyproject.toml
Simon Glass 156d4187f1 tools: Update the license specifiers
Recent versions of Python complain about the license being in the
classifiers part. Use a 'license' property instead.

Signed-off-by: Simon Glass <sjg@chromium.org>
2025-04-28 19:27:43 -06:00

34 lines
791 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "buildman"
version = "0.0.6"
authors = [
{ name="Simon Glass", email="sjg@chromium.org" },
]
dependencies = [
"filelock >= 3.0.12",
"u_boot_pylib >= 0.0.6",
"patch-manager >= 0.0.6"
]
description = "Buildman build tool for U-Boot"
license = "GPL-2.0-or-later"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://docs.u-boot.org/en/latest/build/buildman.html"
"Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues"
[project.scripts]
buildman = "buildman.main:run_buildman"
[tool.setuptools.package-data]
buildman = ["*.rst"]