summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorAndrey Bienkowski <hexagon-recursion@posteo.net>2022-02-25 06:29:01 +0300
committerAndrey Bienkowski <hexagon-recursion@posteo.net>2022-02-25 06:29:01 +0300
commit6cbb7d650fcab4181429572b199267c40c066796 (patch)
treeb799345e28964143ed6a6f044367a948e1a9e010 /pyproject.toml
parentf61e92c600e5bcfc222f4af879962d176d7345ad (diff)
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>
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 000000000..fed528d4a
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"