danish-dynaword / makefile
KennethEnevoldsen's picture
Added distribution plot for number of tokens
0cef317 unverified
raw
history blame contribute delete
519 Bytes
install:
@echo "--- 🚀 Installing project dependencies ---"
uv sync
test:
@echo "--- 🧪 Running tests ---"
uv run pytest src/tests/ | tee test_results.log
lint:
@echo "--- 🧹 Running linters ---"
ruff format . # running ruff formatting
ruff check . --fix # running ruff linting
bump-version:
@echo "--- 🚀 Bumping patch version ---"
uv run src/bump_version.py
update-descriptive-statistics:
@echo "--- 🚀 Recomputing Descriptive statistics ---"
uv run src/update_descriptive_statistics.py