blob: 68bfa45c3f4d090824b7b8c82ed33af731b1534a [file] [log] [blame]
Simon Glassa3132ad2023-02-23 18:18:13 -07001[build-system]
2requires = ["setuptools>=61.0"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "buildman"
Simon Glass78ac1f52023-11-19 08:36:06 -07007version = "0.0.6"
Simon Glassa3132ad2023-02-23 18:18:13 -07008authors = [
9 { name="Simon Glass", email="sjg@chromium.org" },
10]
Simon Glassc229d322024-06-23 11:55:15 -060011dependencies = [
12 "filelock >= 3.0.12",
13 "u_boot_pylib >= 0.0.6",
14 "patch-manager >= 0.0.6"
15]
Simon Glassa3132ad2023-02-23 18:18:13 -070016description = "Buildman build tool for U-Boot"
17readme = "README.rst"
18requires-python = ">=3.7"
19classifiers = [
20 "Programming Language :: Python :: 3",
21 "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
22 "Operating System :: OS Independent",
23]
24
25[project.urls]
Simon Glasse6a8aa82023-11-19 08:36:00 -070026"Homepage" = "https://docs.u-boot.org/en/latest/build/buildman.html"
Simon Glassa3132ad2023-02-23 18:18:13 -070027"Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues"
28
29[project.scripts]
30buildman = "buildman.main:run_buildman"
31
32[tool.setuptools.package-data]
33buildman = ["*.rst"]