It seems that pyproject.toml is here to stay. Some tools like black already use it to store its configurations. Thus every new project should have one with the content:
[build-system]
requires = ["wheel", "setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
It seems that
pyproject.tomlis here to stay. Some tools likeblackalready use it to store its configurations. Thus every new project should have one with the content: