From 9c900d4910af8c8531733ded8f3e67710be88740 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Wed, 24 Mar 2021 20:48:04 +0100 Subject: [PATCH] Add pyproject.toml for PEP 517 --- bob/devtools/templates/pyproject.toml | 3 +++ pyproject.toml | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 bob/devtools/templates/pyproject.toml create mode 100644 pyproject.toml diff --git a/bob/devtools/templates/pyproject.toml b/bob/devtools/templates/pyproject.toml new file mode 100644 index 00000000..bb5e83cb --- /dev/null +++ b/bob/devtools/templates/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel", "bob.extension"] +build-backend = "setuptools.build_meta" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..9787c3bd --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" -- GitLab