diff --git a/README.md b/README.md index 4655063..230b0c5 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ git clone https://git.lukasmahler.de/lm/ICRS.git cd ICRS uv venv 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 ``` To include the optional ttkbootstrap theme pack: diff --git a/pyproject.toml b/pyproject.toml index 19a88f2..0c883ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,4 +17,7 @@ ui = ["ttkbootstrap>=1.10.0"] icrs = "app.app:start_app" [tool.uv] -package = false +package = true + +[tool.uv.scripts] +icrs = "python main.py"