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"]