From 189a9c08aa53705ec7bf79d17871d7a13058b467 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Wed, 27 Mar 2024 09:30:59 -0400 Subject: [PATCH] chore: add developer information for jvm, android, and python libraries --- bdk-android/lib/build.gradle.kts | 7 +++++++ bdk-jvm/lib/build.gradle.kts | 7 +++++++ bdk-python/setup.py | 1 + 3 files changed, 15 insertions(+) diff --git a/bdk-android/lib/build.gradle.kts b/bdk-android/lib/build.gradle.kts index 80211ce..e4fe265 100644 --- a/bdk-android/lib/build.gradle.kts +++ b/bdk-android/lib/build.gradle.kts @@ -80,6 +80,13 @@ afterEvaluate { url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT") } } + developers { + developer { + id.set("bdkdevelopers") + name.set("Bitcoin Dev Kit Developers") + email.set("dev@bitcoindevkit.org") + } + } scm { connection.set("scm:git:github.com/bitcoindevkit/bdk-ffi.git") developerConnection.set("scm:git:ssh://github.com/bitcoindevkit/bdk-ffi.git") diff --git a/bdk-jvm/lib/build.gradle.kts b/bdk-jvm/lib/build.gradle.kts index 52ee241..1b755eb 100644 --- a/bdk-jvm/lib/build.gradle.kts +++ b/bdk-jvm/lib/build.gradle.kts @@ -92,6 +92,13 @@ afterEvaluate { url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT") } } + developers { + developer { + id.set("bdkdevelopers") + name.set("Bitcoin Dev Kit Developers") + email.set("dev@bitcoindevkit.org") + } + } scm { connection.set("scm:git:github.com/bitcoindevkit/bdk-ffi.git") developerConnection.set("scm:git:ssh://github.com/bitcoindevkit/bdk-ffi.git") diff --git a/bdk-python/setup.py b/bdk-python/setup.py index 28a0247..f62b51e 100644 --- a/bdk-python/setup.py +++ b/bdk-python/setup.py @@ -27,6 +27,7 @@ setup( packages=["bdkpython"], package_dir={"bdkpython": "./src/bdkpython"}, url="https://github.com/bitcoindevkit/bdk-ffi", + author="Bitcoin Dev Kit Developers ", license="MIT or Apache 2.0", # This is required to ensure the library name includes the python version, abi, and platform tags # See issue #350 for more information