From 5762391ab07794e9c93cc56588e7bf17d54b05b8 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Tue, 12 Sep 2023 22:24:40 -0400 Subject: [PATCH] Add a pyproject.toml for the Python bindings This is needed for modern Python building/packaging (ie, invoking setup.py directly is now deprecated). --- libconcord/bindings/python/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 libconcord/bindings/python/pyproject.toml diff --git a/libconcord/bindings/python/pyproject.toml b/libconcord/bindings/python/pyproject.toml new file mode 100644 index 0000000..fed528d --- /dev/null +++ b/libconcord/bindings/python/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta"