This commit is contained in:
Thomas (Tom) C. Gorordo 2025-12-20 08:08:47 -08:00
parent 6cdc579270
commit cbedbbeb48
12 changed files with 1582 additions and 591 deletions

View file

@ -1,14 +1,11 @@
list:
just --list
run:
uv run carousel
#run:
# uv run carousel
python *arguments:
uv run python -c "import code; from rich import pretty; pretty.install(); code.interact()" {{arguments}}
check:
uv run pyright src
uv run python -c {{arguments}}
test:
uv run pytest -vvv --tb=short --log-cli-level=INFO
@ -16,7 +13,16 @@ test:
format:
uv run ruff format src test
compile:
check:
uv run pyright src
sync:
uv sync --upgrade
lock:
uv pip compile pyproject.toml -o requirements.txt --group dev
build:
uv run pyinstaller src/cli.py
uv run pyinstaller src/gui.py
@ -29,5 +35,3 @@ wipe:
just clean
rm -rf .venv
lock:
uv pip compile pyproject.toml -o requirements.txt --group dev