From af5d41fdfd70c99134165438dad44cf53d6076dd Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Tue, 19 Jun 2018 10:41:04 +0200 Subject: [PATCH] add build-system section to pyproject.toml this makes the file valid and prepares for https://github.com/pypa/pip/issues/5416 and https://github.com/pypa/pip/pull/5512 --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ffce583f6..65e6bf59b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,10 @@ +[build-system] +requires = [ + "setuptools", + "setuptools-scm", + "wheel", +] + [tool.towncrier] package = "pytest" package_dir = "src"