From 8fd01c12750567de1b1fe448cc800ad1355c0c13 Mon Sep 17 00:00:00 2001 From: Mortdecai Date: Sun, 29 Mar 2026 19:03:31 -0400 Subject: [PATCH] fix: use setuptools instead of hatchling for build backend --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4ce0ac3..e0c821c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" +requires = ["setuptools>=68.0", "setuptools-scm"] +build-backend = "setuptools.build_meta" [project] name = "kitty-workbench"