blob: a7a91e5cfa56c9e92942405c88b7512b86ae7561 [file] [log] [blame]
Simon Glass75554df2023-02-23 18:18:06 -07001[build-system]
2requires = ["setuptools>=61.0"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "u_boot_pylib"
7version = "0.0.2"
8authors = [
9 { name="Simon Glass", email="sjg@chromium.org" },
10]
11description = "U-Boot python library"
Maxim Cournoyer8b9c0822023-07-07 17:15:31 -040012readme = "README.rst"
Simon Glass75554df2023-02-23 18:18:06 -070013requires-python = ">=3.7"
14classifiers = [
15 "Programming Language :: Python :: 3",
16 "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
17 "Operating System :: OS Independent",
18]
19
20[project.urls]
Simon Glass4c4977c2023-11-19 08:36:00 -070021"Homepage" = "https://docs.u-boot.org"
Simon Glass75554df2023-02-23 18:18:06 -070022"Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues"
Maxim Cournoyer3563ede2023-07-07 17:15:32 -040023
Simon Glass6b9fbb42023-11-19 08:36:03 -070024[tool.setuptools.package-data]
25u_boot_pylib = ["*.rst"]