Simon Glass | 75554df | 2023-02-23 18:18:06 -0700 | [diff] [blame] | 1 | [build-system] |
| 2 | requires = ["setuptools>=61.0"] |
| 3 | build-backend = "setuptools.build_meta" |
| 4 | |
| 5 | [project] |
| 6 | name = "u_boot_pylib" |
| 7 | version = "0.0.2" |
| 8 | authors = [ |
| 9 | { name="Simon Glass", email="sjg@chromium.org" }, |
| 10 | ] |
| 11 | description = "U-Boot python library" |
Maxim Cournoyer | 8b9c082 | 2023-07-07 17:15:31 -0400 | [diff] [blame] | 12 | readme = "README.rst" |
Simon Glass | 75554df | 2023-02-23 18:18:06 -0700 | [diff] [blame] | 13 | requires-python = ">=3.7" |
| 14 | classifiers = [ |
| 15 | "Programming Language :: Python :: 3", |
| 16 | "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", |
| 17 | "Operating System :: OS Independent", |
| 18 | ] |
| 19 | |
| 20 | [project.urls] |
| 21 | "Homepage" = "https://u-boot.readthedocs.io" |
| 22 | "Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues" |
Maxim Cournoyer | 3563ede | 2023-07-07 17:15:32 -0400 | [diff] [blame] | 23 | |
| 24 | [tool.setuptools.packages.find] |
| 25 | where = [".."] |
| 26 | include = ["u_boot_pylib*"] |