From cd9e4146e07ca4d40a39e2dac0193473f574ecd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E6=B4=8B=E4=B8=89=E6=B4=8B?= <1258009915@qq.com> Date: Sat, 1 Mar 2025 20:54:00 +0800 Subject: [PATCH] [chore] Add build system and pakage location --- pyproject.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index be171e6..f5713af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,13 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + [project] name = "texteller" authors = [ { name="OleehyO", email="leehy0357@gmail.com" } ] -version = "0.1.2" +version = "1.0.0" description = "Texteller is a tool for converting latex image to text" readme = "README.md" requires-python = ">=3.10" @@ -49,3 +53,6 @@ ignore = [ "E501", "W293", ] + +[tool.hatch.build.targets.wheel] +packages = ["texteller"]