build: 将构建系统换为 hatchling

由于 uv_build 在 android termux 端需编译大量 rust 代码, 极大减慢安装速度, 故使用 hatchling 作为纯 python 构建系统, 这并不影响使用 uv 管理项目
This commit is contained in:
2026-05-16 23:13:14 +08:00
parent d22966b34d
commit 54daa4128d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -89,7 +89,7 @@
`master` 分支安装, 并安装适用于用户体验的可选依赖(推荐): `master` 分支安装, 并安装适用于用户体验的可选依赖(推荐):
``` ```
pip install --upgrade 'heurams[all] @ git+https://git.pluv27.top/pluv/heurams.git@master' pip install --upgrade 'heurams[basic] @ git+https://git.pluv27.top/pluv/heurams.git@master'
``` ```
安装适用于一般计算机的通用音频模块(基于 playsound3):\ 安装适用于一般计算机的通用音频模块(基于 playsound3):\
+2 -2
View File
@@ -73,5 +73,5 @@ markers = [
] ]
[build-system] [build-system]
requires = ["uv_build>=0.7.19"] requires = ["hatchling"]
build-backend = "uv_build" build-backend = "hatchling.build"