From e0baf1cb4904d9f9932e835cc5e3091fc9b3af40 Mon Sep 17 00:00:00 2001 From: YisusChrist Date: Tue, 26 Mar 2024 14:56:31 +0100 Subject: [PATCH] build: add project entry point --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d46ea8d..feb9c86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,9 @@ disable = [ "E0611", # No name in module 'PyQt6' (no-name-in-module) ] +[tool.poetry.scripts] +AnimeSnap = "AnimeSnap.__main__:main" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"