From 438acc60f8f44c0578d7c35e00a40c99d437dca4 Mon Sep 17 00:00:00 2001 From: Dmitry Berezovsky Date: Sat, 23 Dec 2023 20:33:25 +0200 Subject: [PATCH] fix(build): set correct entrypoint for tpp executable --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 99d49e1..51b41d9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ include = [ [tool.poetry.scripts] tapen = "tapen.cli:default_entrypoint" -tpp = "tapen.cli:default_entrypoint" +tpp = "tapen.cli:tpp_entrypoint" [tool.poetry.dependencies] python = ">=3.10, <3.12"