Simon Glass | a3132ad | 2023-02-23 18:18:13 -0700 | [diff] [blame] | 1 | [build-system] |
| 2 | requires = ["setuptools>=61.0"] |
| 3 | build-backend = "setuptools.build_meta" |
| 4 | |
| 5 | [project] |
| 6 | name = "buildman" |
Simon Glass | 78ac1f5 | 2023-11-19 08:36:06 -0700 | [diff] [blame] | 7 | version = "0.0.6" |
Simon Glass | a3132ad | 2023-02-23 18:18:13 -0700 | [diff] [blame] | 8 | authors = [ |
| 9 | { name="Simon Glass", email="sjg@chromium.org" }, |
| 10 | ] |
Simon Glass | c229d32 | 2024-06-23 11:55:15 -0600 | [diff] [blame] | 11 | dependencies = [ |
| 12 | "filelock >= 3.0.12", |
| 13 | "u_boot_pylib >= 0.0.6", |
| 14 | "patch-manager >= 0.0.6" |
| 15 | ] |
Simon Glass | a3132ad | 2023-02-23 18:18:13 -0700 | [diff] [blame] | 16 | description = "Buildman build tool for U-Boot" |
| 17 | readme = "README.rst" |
| 18 | requires-python = ">=3.7" |
| 19 | classifiers = [ |
| 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 Glass | e6a8aa8 | 2023-11-19 08:36:00 -0700 | [diff] [blame] | 26 | "Homepage" = "https://docs.u-boot.org/en/latest/build/buildman.html" |
Simon Glass | a3132ad | 2023-02-23 18:18:13 -0700 | [diff] [blame] | 27 | "Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues" |
| 28 | |
| 29 | [project.scripts] |
| 30 | buildman = "buildman.main:run_buildman" |
| 31 | |
| 32 | [tool.setuptools.package-data] |
| 33 | buildman = ["*.rst"] |