-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
The generated pyproject.toml file declares all of its attributes using non-standard poetry-specific attributes:
| [tool.poetry] | |
| name = "fastapi-project" | |
| version = "0.1.0" | |
| description = "Autogenerated httpx async client for fastapi-project" | |
| authors = ["Autogenerated Client <autogenerated@client.com>"] |
But per the specification, this should be:
[project]
name = "fastapi-project"
version = "0.1.0"
...One should be able to use another build tool (such as uv), and the generated package works correctly.
Metadata
Metadata
Assignees
Labels
No labels