From 445d2cbe61d0933240f9a394f31dd8ffb8ea4429 Mon Sep 17 00:00:00 2001 From: Alexey Stepanov Date: Mon, 23 Apr 2018 11:12:15 +0200 Subject: [PATCH] PEP518 markers for build system --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..be03eaa --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[build-system] +# Minimum requirements for the build system to execute. +# PEP 508 specifications for PEP 518. +requires = [ + "setuptools > 20.2 ", + "wheel", +]