From 6c87baae730227b51a79227a9f2c60335a921ac3 Mon Sep 17 00:00:00 2001 From: Ian Date: Mon, 30 Oct 2023 13:20:10 -0700 Subject: [PATCH] fix setup --- binding/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binding/python/setup.py b/binding/python/setup.py index f8aff35..9e5cbcd 100644 --- a/binding/python/setup.py +++ b/binding/python/setup.py @@ -32,7 +32,7 @@ shutil.copytree( os.path.join(os.path.dirname(__file__), '../../lib', platform), os.path.join(package_folder, 'lib', platform)) -manifest_in += "recursive-include pvkoala/lib/ *\n" +manifest_in += "recursive-include pvkoala/lib *\n" with open(os.path.join(os.path.dirname(__file__), 'MANIFEST.in'), 'w') as f: f.write(manifest_in)