TIL that `wheel` is not needed as build requirement when using `setuptools`! https://setuptools.pypa.io/en/latest/userguide/quickstart.html#basic-use
> Historically this documentation has unnecessarily listed `wheel` in the `requires` list, and many projects still do that. This is not recommended.
![Code screenshot showing the "build-system" section of pyproject.toml:
```
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
``` Code screenshot showing the "build-system" section of pyproject.toml:
```
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
```](/socialjuanluspace/media_attachments/files/110/231/759/326/259/312/original/e636f4d4c98bb4f5.png)