Update uv setup and instructions

This commit is contained in:
lm 2025-10-17 12:38:01 +02:00
parent 5a1629669f
commit 1acfabc95a
2 changed files with 5 additions and 2 deletions

View File

@ -21,7 +21,7 @@ git clone https://git.lukasmahler.de/lm/ICRS.git
cd ICRS cd ICRS
uv venv uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate source .venv/bin/activate # Windows: .venv\Scripts\activate
uv pip sync # installs Pillow + optional deps from pyproject uv pip install . # install ICRS and dependencies
uv run icrs # launches the GUI uv run icrs # launches the GUI
``` ```
To include the optional ttkbootstrap theme pack: To include the optional ttkbootstrap theme pack:

View File

@ -17,4 +17,7 @@ ui = ["ttkbootstrap>=1.10.0"]
icrs = "app.app:start_app" icrs = "app.app:start_app"
[tool.uv] [tool.uv]
package = false package = true
[tool.uv.scripts]
icrs = "python main.py"