'Why can't I have multiple authors after build (with poetry) in PKG-INFO?

  • [x] I have searched the issues of this repo and believe that this is not a duplicate.
  • [x] I have searched the documentation and believe that my question is not covered.

Issue

Hi I was wondering why there is only one author and author-email in the PKG-INFO file contained in the tar.gz archive of my package after building it with poetry build.

Part of my pyproject.toml :

[tool.poetry]
name = "Surikatz"
version = "1.1"
description = "A powerful tool for searching informations during pentest"
authors = ["alphae-nix <[email protected]>", 
           "Anemys <[email protected]>",
           "NathanSaucet <[email protected]>",
           "Mogulzz <[email protected]>",
           "blackjack-nix <[email protected]>",
           "CappiLucky <[email protected]>"
]

Part of the PKG-INFO file :

Metadata-Version: 2.1
Name: surikatz
Version: 1.1
Summary: A powerful tool for searching informations during pentest
Author: alphae-nix
Author-email: [email protected]


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source