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