From: Simon Glass Date: Sun, 19 Nov 2023 15:36:03 +0000 (-0700) Subject: u_boot_pylib: Correct files used for pip release X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=6b9fbb47e41190d8a9b2927fcc8f0cff8e0809ab;p=u-boot.git u_boot_pylib: Correct files used for pip release The files list is incorrect and dates from a time when the script was run from a different directory. Update it to match all the other tools. Signed-off-by: Simon Glass --- diff --git a/tools/u_boot_pylib/pyproject.toml b/tools/u_boot_pylib/pyproject.toml index 1984bd3700..a7a91e5cfa 100644 --- a/tools/u_boot_pylib/pyproject.toml +++ b/tools/u_boot_pylib/pyproject.toml @@ -21,6 +21,5 @@ classifiers = [ "Homepage" = "https://docs.u-boot.org" "Bug Tracker" = "https://source.denx.de/groups/u-boot/-/issues" -[tool.setuptools.packages.find] -where = [".."] -include = ["u_boot_pylib*"] +[tool.setuptools.package-data] +u_boot_pylib = ["*.rst"]