Add pyproject.toml

This blocks #6264 because black configuration is stored in pyproject.toml.
See <https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-format>
I copied this from <https://setuptools.pypa.io/en/latest/userguide/quickstart.html#basic-use>
This commit is contained in:
Andrey Bienkowski 2022-02-25 06:29:01 +03:00
parent f61e92c600
commit 6cbb7d650f
1 changed files with 3 additions and 0 deletions

3
pyproject.toml Normal file
View File

@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"