From 3419f366e41a235141eb16ccae369d2c7c139e1e Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 12:40:11 +0200 Subject: [PATCH] Fix uv packaging config --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0c883ec..eec0cc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Interactive Color Range Analyzer (ICRS) for Tkinter" readme = "README.md" authors = [{ name = "ICRS contributors" }] -license = { text = "MIT" } +license = "MIT" requires-python = ">=3.10" dependencies = [ "pillow>=10.0.0", @@ -19,5 +19,5 @@ icrs = "app.app:start_app" [tool.uv] package = true -[tool.uv.scripts] -icrs = "python main.py" +[tool.setuptools.packages.find] +include = ["app"]