Enable subdirectories for native libraries in package

This commit is contained in:
thunderbiscuit 2021-12-13 12:17:25 -05:00
parent 65bd7ea428
commit 662c425743
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -65,7 +65,7 @@ setup(
version='0.0.3-dev',
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={"bdkpython": ["*.dylib", "*.so"]},
package_data={"bdkpython": ["*/*.dylib", "*/*.so"]},
include_package_data=True,
zip_safe=False,
description="The Python language bindings for the bitcoindevkit",