From 66b42c57624fed38c3aff324ed8817be47637c71 Mon Sep 17 00:00:00 2001 From: Zhaofeng Zhang <24791380+vcfgv@users.noreply.github.com> Date: Wed, 3 Sep 2025 16:18:02 +0800 Subject: [PATCH] chore: Update pyproject.toml to include build system configuration and wheel target settings --- python/pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/python/pyproject.toml b/python/pyproject.toml index 893437939..f75a2b827 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,3 +1,7 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + [project] name = "valuecell" version = "0.1.0" @@ -33,3 +37,14 @@ quote-style = "double" indent-style = "space" skip-magic-trailing-comma = false line-ending = "auto" + +[tool.hatch.build.targets.wheel] +include = [ + "valuecell", +] +exclude = [ + "third_party/**", + "**/third_party/**", + "tests/**", + "**/tests/**", +]