diff --git a/.gitignore b/.gitignore index c1b09b1..1fd0218 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,10 @@ __pycache__/ .venv/ venv/ +main.spec +build/ +dist/ + .ipynb_checkpoints .ruff_cache/ .pytest_cache/ diff --git a/justfile b/justfile index bbd6eab..6a9862d 100644 --- a/justfile +++ b/justfile @@ -10,10 +10,13 @@ test: format: uv run ruff format src test +compile: + uv run pyinstaller src/main.py + clean: uv run pyclean src test uv run ruff clean - rm -rf .pytest_cache .hypothesis .benchmarks + rm -rf main.spec build dist .pytest_cache .hypothesis .benchmarks wipe: just clean