diff --git a/bdk-android/lib/build.gradle.kts b/bdk-android/lib/build.gradle.kts index 43d9c41b..1886cea8 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 7aa2a173..043e7434 100644 --- a/bdk-jvm/lib/build.gradle.kts +++ b/bdk-jvm/lib/build.gradle.kts @@ -90,6 +90,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 e0cd023b..a170d079 100644 --- a/bdk-python/setup.py +++ b/bdk-python/setup.py @@ -26,6 +26,7 @@ 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