Pillow/pyproject.toml
Michał Górny d56fb2435d Remove redundant wheel dep from pyproject.toml
Remove the redundant `wheel` dependency, as it is added by the backend
automatically.  Listing it explicitly in the documentation was
a historical mistake and has been fixed since, see:
f7d30a9529

While Pillow uses a custom backend that modifies the `bdist_wheel`
method, it does not import `wheel` or use it in a way that would rely
on setuptools implementation details.
2023-07-02 04:13:02 +02:00

9 lines
116 B
TOML

[build-system]
build-backend = "backend"
requires = [
"setuptools>=67.8",
]
backend-path = [
"_custom_build",
]