From e95609da897e73a4606682130b12541db7dcbd7d Mon Sep 17 00:00:00 2001 From: Julian Berman Date: Thu, 6 Jun 2019 20:10:51 -0400 Subject: Add a pyproject.toml specifying we use setupools. Closes: #558 --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8fac02e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,8 @@ +[build-system] +requires = [ + # The minimum setuptools version is specific to the PEP 517 backend, + # and may be stricter than the version required in `setup.py` + "setuptools>=40.6.0", + "wheel", +] +build-backend = "setuptools.build_meta" -- cgit v1.2.1