Simon Glass | f1a82df | 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" |
Simon Glass | 78ac1f5 | 2023-11-19 08:36:06 -0700 | [diff] [blame] | 7 | version = "0.0.6" |
Simon Glass | f1a82df | 2023-02-23 18:18:06 -0700 | [diff] [blame] | 8 | authors = [ |
| 9 | { name="Simon Glass", email="sjg@chromium.org" }, |
| 10 | ] |
| 11 | description = "U-Boot python library" |
Maxim Cournoyer | 2883fd2 | 2023-07-07 17:15:31 -0400 | [diff] [blame] | 12 | readme = "README.rst" |
Simon Glass | f1a82df | 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] |
Simon Glass | e6a8aa8 | 2023-11-19 08:36:00 -0700 | [diff] [blame] | 21 | "Homepage" = "https://docs.u-boot.org" |
Simon Glass | f1a82df | 2023-02-23 18:18:06 -0700 | [diff] [blame] | 22 | "Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues" |
Maxim Cournoyer | 933cb7a | 2023-07-07 17:15:32 -0400 | [diff] [blame] | 23 | |
Simon Glass | f0d02bc | 2023-11-19 08:36:03 -0700 | [diff] [blame] | 24 | [tool.setuptools.package-data] |
| 25 | u_boot_pylib = ["*.rst"] |