At the moment we produce the following pyproject.toml for the keys license, authors and maintainers:
[[project.authors]]
name = "Julien"
email = "julien@example.com"
[[project.maintainers]]
name = "Julien"
email = "julien@example.com"
[project.license]
file = "LICENSE"
It would be better if we used inline-maps for those keys:
license = {file = "LICENSE"}
authors = [
{name = "Julien", email = "julien@example.com"},
]
maintainers = [
{name = "Julien", email = "julien@example.com"}
]
At the moment we produce the following
pyproject.tomlfor the keys license, authors and maintainers:It would be better if we used inline-maps for those keys: