mirror of
https://github.com/tgorordo/carousel.git
synced 2026-06-14 21:32:14 -07:00
add pyinstaller task
This commit is contained in:
parent
3507cf1290
commit
19c6b29a5f
2 changed files with 8 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -5,6 +5,10 @@ __pycache__/
|
||||||
.venv/
|
.venv/
|
||||||
venv/
|
venv/
|
||||||
|
|
||||||
|
main.spec
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
|
||||||
.ipynb_checkpoints
|
.ipynb_checkpoints
|
||||||
.ruff_cache/
|
.ruff_cache/
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
|
|
|
||||||
5
justfile
5
justfile
|
|
@ -10,10 +10,13 @@ test:
|
||||||
format:
|
format:
|
||||||
uv run ruff format src test
|
uv run ruff format src test
|
||||||
|
|
||||||
|
compile:
|
||||||
|
uv run pyinstaller src/main.py
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
uv run pyclean src test
|
uv run pyclean src test
|
||||||
uv run ruff clean
|
uv run ruff clean
|
||||||
rm -rf .pytest_cache .hypothesis .benchmarks
|
rm -rf main.spec build dist .pytest_cache .hypothesis .benchmarks
|
||||||
|
|
||||||
wipe:
|
wipe:
|
||||||
just clean
|
just clean
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue