From 223934a406f8d832eac75bb4306d7f65f72d5dd0 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Tue, 22 Jun 2021 10:01:10 +0200 Subject: [PATCH] https://snarky.ca/what-the-heck-is-pyproject-toml https://www.python.org/dev/peps/pep-0518 https://www.python.org/dev/peps/pep-0517 --- python/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 python/pyproject.toml diff --git a/python/pyproject.toml b/python/pyproject.toml new file mode 100644 index 000000000..7ce9bbeb8 --- /dev/null +++ b/python/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ['setuptools >= 40.6.0', 'wheel'] +build-backend = 'setuptools.build_meta'