You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should add a pyproject.toml file to all libraries to explicitly specify what build tools they need. At the time of writing, the implicit default assumed by pip is setuptools, but we can make this explicit with pyproject.toml.
As per blog post linked below, if a project uses setuptools, the contents of pyproject.toml should be the following (which is what pip currently assumes if that file is missing):
We should add a
pyproject.toml
file to all libraries to explicitly specify what build tools they need. At the time of writing, the implicit default assumed bypip
issetuptools
, but we can make this explicit withpyproject.toml
.As per blog post linked below, if a project uses
setuptools
, the contents ofpyproject.toml
should be the following (which is whatpip
currently assumes if that file is missing):Resources:
pyproject.toml
file).pyproject.toml
.The text was updated successfully, but these errors were encountered: