From 239d47aa2bf1d20bf5f789c5171d2cbbec96a021 Mon Sep 17 00:00:00 2001 From: chengzongjie Date: Sun, 24 May 2026 14:36:48 +0800 Subject: [PATCH] fix: add project build info --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0b350b9..a6ca8d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,3 +18,14 @@ dev = [ [[tool.uv.index]] url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" default = true + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.build.targets.wheel] +packages = ["ok.py", "main.py"] + +[project.scripts] +abc = "main:main" +hello = "ok:hello"