Drop `wheel` from `pyproject.toml` example
It is unnecessary and has been deleted from the setuptools' docs too. The setuptools' PEP 517 build backend implementation has been auto-adding the `wheel` dependency since it's first been implemented.
This commit is contained in:
parent
69f2855cc8
commit
71aa1388e0
|
@ -17,7 +17,7 @@ Next, place a ``pyproject.toml`` file in the root of your package:
|
|||
.. code-block:: toml
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=42", "wheel"]
|
||||
requires = ["setuptools >= 42"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
and a ``setup.cfg`` file containing your package's metadata with the following minimum content:
|
||||
|
|
Loading…
Reference in New Issue