Simon Glass | 30eb11a | 2023-02-23 18:18:08 -0700 | [diff] [blame] | 1 | [build-system] |
| 2 | requires = ["setuptools>=61.0"] |
| 3 | build-backend = "setuptools.build_meta" |
| 4 | |
| 5 | [project] |
| 6 | name = "patch-manager" |
| 7 | version = "0.0.2" |
| 8 | authors = [ |
| 9 | { name="Simon Glass", email="sjg@chromium.org" }, |
| 10 | ] |
| 11 | dependencies = ["u_boot_pylib"] |
| 12 | description = "Patman patch manager" |
| 13 | readme = "README.rst" |
| 14 | requires-python = ">=3.7" |
| 15 | classifiers = [ |
| 16 | "Programming Language :: Python :: 3", |
| 17 | "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", |
| 18 | "Operating System :: OS Independent", |
| 19 | ] |
| 20 | |
| 21 | [project.urls] |
| 22 | "Homepage" = "https://u-boot.readthedocs.io/en/latest/develop/patman.html" |
| 23 | "Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues" |
| 24 | |
| 25 | [project.scripts] |
Maxim Cournoyer | 8acdb70 | 2023-09-01 01:05:12 -0400 | [diff] [blame] | 26 | patman = "patman.__main__" |
Simon Glass | 30eb11a | 2023-02-23 18:18:08 -0700 | [diff] [blame] | 27 | |
| 28 | [tool.setuptools.package-data] |
| 29 | patman = ["*.rst"] |