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