Fix uv packaging config

This commit is contained in:
lm 2025-10-17 12:40:11 +02:00
parent 1acfabc95a
commit 3419f366e4
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ version = "0.1.0"
description = "Interactive Color Range Analyzer (ICRS) for Tkinter" description = "Interactive Color Range Analyzer (ICRS) for Tkinter"
readme = "README.md" readme = "README.md"
authors = [{ name = "ICRS contributors" }] authors = [{ name = "ICRS contributors" }]
license = { text = "MIT" } license = "MIT"
requires-python = ">=3.10" requires-python = ">=3.10"
dependencies = [ dependencies = [
"pillow>=10.0.0", "pillow>=10.0.0",
@ -19,5 +19,5 @@ icrs = "app.app:start_app"
[tool.uv] [tool.uv]
package = true package = true
[tool.uv.scripts] [tool.setuptools.packages.find]
icrs = "python main.py" include = ["app"]