diff --git a/justfile b/justfile index 631c88b..9090eec 100644 --- a/justfile +++ b/justfile @@ -20,12 +20,12 @@ test: uv run pytest -vvv --tb=short --log-cli-level=INFO compile: - uv run pyinstaller --clean -F src/cmd.py --name smithycmd + uv run --with-requirements src/smithycmd.py pyinstaller --clean -F src/smithycmd.py --name smithycmd clean: uv run pyclean src test uv run ruff clean - rm -rf smithy.spec build dist .pytest_cache .hypothesis .benchmarks __marimo__ + rm -rf smithycmd.spec build dist .pytest_cache .hypothesis .benchmarks __marimo__ wipe: just clean diff --git a/src/smithycmd.py b/src/smithycmd.py index 1c1420c..ae2de98 100644 --- a/src/smithycmd.py +++ b/src/smithycmd.py @@ -12,6 +12,7 @@ from rich.console import Console from rich.table import Table from rich.panel import Panel +import polars as pl from smithy import smith_set @click.command()