Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pyproject.toml Inline map vs section map #66

Open
Julien00859 opened this issue May 19, 2023 · 1 comment
Open

Pyproject.toml Inline map vs section map #66

Julien00859 opened this issue May 19, 2023 · 1 comment

Comments

@Julien00859
Copy link
Member

At the moment we produce the following pyproject.toml for the keys license, authors and maintainers:

[[project.authors]]
name = "Julien"
email = "[email protected]"

[[project.maintainers]]
name = "Julien"
email = "[email protected]"

[project.license]
file = "LICENSE"

It would be better if we used inline-maps for those keys:

license = {file = "LICENSE"}
authors = [
  {name = "Julien", email = "[email protected]"},
]
maintainers = [
  {name = "Julien", email = "[email protected]"}
]
@fblanchetNaN
Copy link
Collaborator

@Julien00859 I cannot reproduce what you observed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants