From cc8e96c69c6b79d299841089522b0d2f23e343ff Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Sun, 15 Mar 2020 16:34:18 +0300 Subject: [PATCH] Added pyproject.toml to make `python3 -m pep517.build` work --- 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 0000000..8fe2f47 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta"