From 66376f05ecdcf09245ad8ab175ae6d7ae558dbde Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 5 Aug 2022 10:31:24 -0400 Subject: [PATCH] Refactors to setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 25e6e03..f44f715 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ print(f"Wallet balance is: {balance}") """ rust_ext = RustExtension( - "bdkpython.bdkffi", + target="bdkpython.bdkffi", path="./bdk-ffi/Cargo.toml", binding=Binding.NoBinding, ) @@ -60,7 +60,7 @@ rust_ext = RustExtension( setup( name='bdkpython', 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_content_type='text/markdown', rust_extensions=[rust_ext],