From 6cbb7d650fcab4181429572b199267c40c066796 Mon Sep 17 00:00:00 2001 From: Andrey Bienkowski Date: Fri, 25 Feb 2022 06:29:01 +0300 Subject: [PATCH] Add pyproject.toml This blocks #6264 because black configuration is stored in pyproject.toml. See I copied this from --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml 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"