From 5ecbf64e607e456b7ddd8a88dd3d1dfbbf0bebe2 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 17 Nov 2023 15:52:12 -0500 Subject: [PATCH] chore: remove authors from rust, kotlin, and python libraries --- bdk-android/lib/build.gradle.kts | 12 ------------ bdk-ffi/Cargo.toml | 3 ++- bdk-jvm/lib/build.gradle.kts | 12 ------------ bdk-python/setup.py | 1 - 4 files changed, 2 insertions(+), 26 deletions(-) diff --git a/bdk-android/lib/build.gradle.kts b/bdk-android/lib/build.gradle.kts index 1cf6b1f..43d9c41 100644 --- a/bdk-android/lib/build.gradle.kts +++ b/bdk-android/lib/build.gradle.kts @@ -80,18 +80,6 @@ afterEvaluate { url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT") } } - developers { - developer { - id.set("notmandatory") - name.set("Steve Myers") - email.set("notmandatory@noreply.github.org") - } - developer { - id.set("artfuldev") - name.set("Sudarsan Balaji") - email.set("sudarsan.balaji@artfuldev.com") - } - } 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-ffi/Cargo.toml b/bdk-ffi/Cargo.toml index 2003b59..f20d764 100644 --- a/bdk-ffi/Cargo.toml +++ b/bdk-ffi/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "bdk-ffi" version = "1.0.0-alpha.2" -authors = ["Steve Myers ", "Sudarsan Balaji "] +homepage = "https://bitcoindevkit.org" +repository = "https://github.com/bitcoindevkit/bdk" edition = "2018" license = "MIT OR Apache-2.0" diff --git a/bdk-jvm/lib/build.gradle.kts b/bdk-jvm/lib/build.gradle.kts index a3551e0..7aa2a17 100644 --- a/bdk-jvm/lib/build.gradle.kts +++ b/bdk-jvm/lib/build.gradle.kts @@ -90,18 +90,6 @@ afterEvaluate { url.set("https://github.com/bitcoindevkit/bdk/blob/master/LICENSE-MIT") } } - developers { - developer { - id.set("notmandatory") - name.set("Steve Myers") - email.set("notmandatory@noreply.github.org") - } - developer { - id.set("artfuldev") - name.set("Sudarsan Balaji") - email.set("sudarsan.balaji@artfuldev.com") - } - } 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 4c8ef44..ea25ba5 100644 --- a/bdk-python/setup.py +++ b/bdk-python/setup.py @@ -26,7 +26,6 @@ setup( packages=["bdkpython"], package_dir={"bdkpython": "./src/bdkpython"}, url="https://github.com/bitcoindevkit/bdk-ffi", - author="Alekos Filini , Steve Myers ", 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