2023-02-24 09:18:21 +08:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "binary-manager"
|
2023-11-19 23:36:06 +08:00
|
|
|
version = "0.0.6"
|
2023-02-24 09:18:21 +08:00
|
|
|
authors = [
|
|
|
|
{ name="Simon Glass", email="sjg@chromium.org" },
|
|
|
|
]
|
2023-11-19 23:36:06 +08:00
|
|
|
dependencies = ["pylibfdt", "u_boot_pylib >= 0.0.6", "dtoc >= 0.0.6"]
|
2023-02-24 09:18:21 +08:00
|
|
|
description = "Binman firmware-packaging tool"
|
|
|
|
readme = "README.rst"
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
2023-11-19 23:36:00 +08:00
|
|
|
"Homepage" = "https://docs.u-boot.org/en/latest/develop/package/index.html"
|
2023-02-24 09:18:21 +08:00
|
|
|
"Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
binman = "binman.main:start_binman"
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
|
|
patman = ["*.rst"]
|