From 3261d9c714fdc05ea373cc71842eb70e2f3cbb6b Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 26 May 2024 19:49:30 -0500 Subject: [PATCH] meta: remove emails from author/maintainer metadata MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since pypi/warehouse#9400 and pypi/warehouse#14813 (perhaps others too) remain unresolved, let's keep our metadata simple. Incomplete metadata— i.e. the email addresses this commit removes—is the only thing worse than straight-up *incorrect* metadata. We don't want any author or maintainer names to be attached to the wrong email addresses on the published package page. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 86b27e7a1..bc7dc8e49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,12 +14,12 @@ name = "sopel" version = "8.0.0" description = "Simple and extensible IRC bot" maintainers = [ - { name="dgw", email="dgw@technobabbl.es" }, - { name="Florian Strzelecki", email="florian.strzelecki@gmail.com" }, + { name="dgw" }, + { name="Florian Strzelecki" }, ] authors = [ - { name="dgw", email="dgw@technobabbl.es" }, - { name="Florian Strzelecki", email="florian.strzelecki@gmail.com" }, + { name="dgw" }, + { name="Florian Strzelecki" }, { name="Sean B. Palmer" }, { name="Else Powell" }, { name="Elad Alfassa" },