Refactors to setup.py

This commit is contained in:
thunderbiscuit 2022-08-05 10:31:24 -04:00
parent d633d6d2a9
commit 66376f05ec
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -52,7 +52,7 @@ print(f"Wallet balance is: {balance}")
""" """
rust_ext = RustExtension( rust_ext = RustExtension(
"bdkpython.bdkffi", target="bdkpython.bdkffi",
path="./bdk-ffi/Cargo.toml", path="./bdk-ffi/Cargo.toml",
binding=Binding.NoBinding, binding=Binding.NoBinding,
) )
@ -60,7 +60,7 @@ rust_ext = RustExtension(
setup( setup(
name='bdkpython', name='bdkpython',
version='0.2.0.dev0', version='0.2.0.dev0',
description="The Python language bindings for the Bitcoin Dev Kit", description="The Python language bindings for the Bitcoin Development Kit",
long_description=LONG_DESCRIPTION, long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
rust_extensions=[rust_ext], rust_extensions=[rust_ext],