Add .so file type to package data copy task

This fix enables building for the x86_64 architecture
This commit is contained in:
thunderbiscuit 2021-12-11 19:26:36 -05:00
parent c750af1b9a
commit 5e82625b76
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

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