Merge tag 'u-boot-imx-20230923' of https://source.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / tools / patman / pyproject.toml
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]
26 patman = "patman.__main__"
27
28 [tool.setuptools.package-data]
29 patman = ["*.rst"]