From d460cb4fab007620fbbddaccdf829426e301261d Mon Sep 17 00:00:00 2001 From: Suhwan Choi Date: Sun, 22 Feb 2026 10:30:14 +0000 Subject: [PATCH 1/2] chore: switch build system to hatchling --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 91e5b77..95c516c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["setuptools>=61.0"] -build-backend = "setuptools.build_meta" +requires = ["hatchling"] +build-backend = "hatchling.build" [project] name = "dexbotic" From 42f72859dfe48bb4c30a09ab151a018c2ca0700a Mon Sep 17 00:00:00 2001 From: Suhwan Choi Date: Sun, 22 Feb 2026 10:31:33 +0000 Subject: [PATCH 2/2] chore: update build configuration to use hatch for packaging --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 95c516c..937501b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,7 @@ attention = [ "xformers" ] -[tool.setuptools] +[tool.hatch.build.targets.wheel] packages = ["dexbotic"] [tool.autopep8]