Skip to content

Commit 08d3be8

Browse files
Drop personal email from package metadata
The `authors` fields in pyproject.toml / Cargo.toml carried a private Gmail address. Keep the author name only; no public contact email is needed for these artefacts. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 4673693 commit 08d3be8

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

python-ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "minecraft_bot_accel"
33
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.75"
6-
authors = ["Alex Melan <cleverbotam@gmail.com>"]
6+
authors = ["Alex Melan"]
77
description = "PyO3 façade over the minecraft_bot Rust crate — native-speed alternative to the Python reference."
88
license = "MIT"
99
repository = "https://github.com/AlexMelanFromRingo/MinecraftBot"

python-ext/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Native-speed alternative implementation of minecraft_bot (Rust +
99
readme = "../README.md"
1010
requires-python = ">=3.11"
1111
license = { text = "MIT" }
12-
authors = [{ name = "Alex Melan", email = "cleverbotam@gmail.com" }]
12+
authors = [{ name = "Alex Melan" }]
1313
keywords = ["minecraft", "bot", "agent", "protocol", "asyncio", "pyo3"]
1414
classifiers = [
1515
"Development Status :: 3 - Alpha",

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = "Minecraft Java Edition bot/agent framework — Python reference i
1313
readme = { text = "Python reference implementation of the MinecraftBot framework. See repo README for full documentation.", content-type = "text/plain" }
1414
requires-python = ">=3.11"
1515
license = { text = "MIT" }
16-
authors = [{ name = "Alex Melan", email = "cleverbotam@gmail.com" }]
16+
authors = [{ name = "Alex Melan" }]
1717
keywords = ["minecraft", "bot", "agent", "protocol", "asyncio"]
1818
classifiers = [
1919
"Development Status :: 3 - Alpha",

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "minecraft_bot"
33
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.75"
6-
authors = ["Alex Melan <cleverbotam@gmail.com>"]
6+
authors = ["Alex Melan"]
77
description = "Minecraft Java Edition bot/agent framework — Rust parity mirror."
88
license = "MIT"
99
repository = "https://github.com/AlexMelanFromRingo/MinecraftBot"

0 commit comments

Comments
 (0)