2023-02-24 01:18:06 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "u_boot_pylib"
|
2023-11-19 15:36:06 +00:00
|
|
|
version = "0.0.6"
|
2023-02-24 01:18:06 +00:00
|
|
|
authors = [
|
|
|
|
{ name="Simon Glass", email="sjg@chromium.org" },
|
|
|
|
]
|
|
|
|
description = "U-Boot python library"
|
2023-07-07 21:15:31 +00:00
|
|
|
readme = "README.rst"
|
2023-02-24 01:18:06 +00:00
|
|
|
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 15:36:00 +00:00
|
|
|
"Homepage" = "https://docs.u-boot.org"
|
2023-02-24 01:18:06 +00:00
|
|
|
"Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues"
|
2023-07-07 21:15:32 +00:00
|
|
|
|
2023-11-19 15:36:03 +00:00
|
|
|
[tool.setuptools.package-data]
|
|
|
|
u_boot_pylib = ["*.rst"]
|