From f1bb51a5abfa92a3fd958538b40ce5c82b57624d Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 12 Apr 2023 17:19:52 +0200 Subject: [PATCH] bindings: python: add MANIFEST.in In order to allow building sdist and wheel packages for python bindings with python3-build, add a proper MANIFEST.in file. Signed-off-by: Bartosz Golaszewski --- bindings/python/MANIFEST.in | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bindings/python/MANIFEST.in diff --git a/bindings/python/MANIFEST.in b/bindings/python/MANIFEST.in new file mode 100644 index 0000000..1460510 --- /dev/null +++ b/bindings/python/MANIFEST.in @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: CC0-1.0 +# SPDX-FileCopyrightText: 2023 Bartosz Golaszewski + +include setup.py + +recursive-include gpiod *.py + +recursive-include gpiod/ext *.c +recursive-include gpiod/ext *.h -- 2.30.2