1[build-system] 2requires = ["setuptools>=61.0"] 3build-backend = "setuptools.build_meta" 4 5[project] 6name = "buildman" 7version = "0.0.6" 8authors = [ 9 { name="Simon Glass", email="sjg@chromium.org" }, 10] 11dependencies = [ 12 "filelock >= 3.0.12", 13 "u_boot_pylib >= 0.0.6", 14 "patch-manager >= 0.0.6" 15] 16description = "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] 26"Homepage" = "https://docs.u-boot.org/en/latest/build/buildman.html" 27"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"] 34