From 19c6b29a5f385c2d901295b1be51014d1a7cb679 Mon Sep 17 00:00:00 2001 From: "Thomas (Tom) C. Gorordo" Date: Fri, 18 Apr 2025 02:58:32 -0700 Subject: [PATCH] add pyinstaller task --- .gitignore | 4 ++++ justfile | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) 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