mirror of
https://github.com/tgorordo/carousel.git
synced 2026-06-12 20:42:13 -07:00
27 lines
449 B
Makefile
27 lines
449 B
Makefile
run:
|
|
uv run carousel
|
|
|
|
check:
|
|
uv run pyright src
|
|
|
|
test:
|
|
uv run pytest -vv --tb=short
|
|
|
|
format:
|
|
uv run ruff format src test
|
|
|
|
compile:
|
|
uv run pyinstaller src/cli.py
|
|
uv run pyinstaller src/gui.py
|
|
|
|
clean:
|
|
uv run pyclean src test
|
|
uv run ruff clean
|
|
rm -rf main.spec cli.spec gui.spec build dist .pytest_cache .hypothesis .benchmarks
|
|
|
|
wipe:
|
|
just clean
|
|
rm -rf .venv
|
|
|
|
lock:
|
|
uv pip compile pyproject.toml -o requirements.txt --group dev
|