mirror of
https://github.com/tgorordo/smithy.git
synced 2026-06-05 16:22:15 -07:00
fix cli compilation
This commit is contained in:
parent
8b39991bcd
commit
5d0f1da322
2 changed files with 3 additions and 2 deletions
4
justfile
4
justfile
|
|
@ -20,12 +20,12 @@ test:
|
||||||
uv run pytest -vvv --tb=short --log-cli-level=INFO
|
uv run pytest -vvv --tb=short --log-cli-level=INFO
|
||||||
|
|
||||||
compile:
|
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:
|
clean:
|
||||||
uv run pyclean src test
|
uv run pyclean src test
|
||||||
uv run ruff clean
|
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:
|
wipe:
|
||||||
just clean
|
just clean
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ from rich.console import Console
|
||||||
from rich.table import Table
|
from rich.table import Table
|
||||||
from rich.panel import Panel
|
from rich.panel import Panel
|
||||||
|
|
||||||
|
import polars as pl
|
||||||
from smithy import smith_set
|
from smithy import smith_set
|
||||||
|
|
||||||
@click.command()
|
@click.command()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue