From 887ba24dd3eefae6f6a0e3270297ce67f3773ce1 Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Fri, 21 Aug 2026 21:12:15 +1200 Subject: [PATCH] Specify a build-system (setuptools) --- .gitignore | 1 + pyproject.toml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 66a5b9c..0fc9ec3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ spin.egg-info __pycache__ dist/ build/ +*.lock diff --git a/pyproject.toml b/pyproject.toml index 4b282e2..81f63b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + [project] name = "spin" requires-python = ">=3.10" # Oldest non-EOL Python here