@@ -21,20 +21,20 @@ help: ## Display help message
2121install : devready
2222.PHONY : devready
2323devready : # # Prepare local dev env: Create virtual env, install the pre-commit hooks
24- $(call INFO_MESSAGE, Prepare local dev env: Create virtual env and install the pre-commit hooks)
24+ $(call INFO_MESSAGE, "⚙️ Prepare local dev env: Create virtual env and install the pre-commit hooks" )
2525 uv sync --dev
2626 uv run pre-commit install
27- @echo ' ⚠️ You must activate the virtual env with `source .venv/bin/activate`'
27+ @echo ' ⚠️ Activate the virtual env with `source .venv/bin/activate`'
2828
2929.PHONY : build
3030build : # # Build package
31- $(call INFO_MESSAGE, "Building package")
31+ $(call INFO_MESSAGE, "🛠️ Build package")
3232 rm -fr dist
3333 uv build
3434
3535.PHONY : publish
36- publish : build # # publish package to PyPI
37- $(call INFO_MESSAGE, "Publishing package")
36+ publish : build # # Publish package to PyPI
37+ $(call INFO_MESSAGE, "Publish package to PyPI ")
3838 uv publish # Requires UV_PUBLISH_TOKEN or Trusted Publishing setup
3939
4040# ###########################################################################
@@ -72,20 +72,20 @@ docs-test: ## Test if documentation can be built without warnings or errors
7272
7373.PHONY : clean
7474clean : # # Remove temporary and backup files
75- $(call INFO_MESSAGE, "Remove temporary and backup files")
75+ $(call INFO_MESSAGE, "🧹 Remove temporary and backup files")
7676 find . \( -name " *~" -o -name " *.bak" \) -exec rm -frv {} +
7777
7878.PHONY : cleaner
7979cleaner : clean # # Remove files and directories that are easily rebuilt
80- $(call INFO_MESSAGE, "Remove files and directories that are easily rebuilt")
80+ $(call INFO_MESSAGE, "🗑️ Remove files and directories that are easily rebuilt")
8181 rm -frv .cache .DS_Store .pytest_cache .ruff_cache build coverage.xml dist docs/_build site
8282 find . \( -name __pycache__ -type d \) -exec rm -frv {} +
8383 find . \( -name " *.pyc" -o -name " *.egg-info" \) -exec rm -frv {} +
8484 find . \( -name " *.orig" -o -name " *.rej" \) -exec rm -frv {} +
8585
8686.PHONY : cleanest
87- cleanest : cleaner # # Remove all files that can be rebuilt
88- $(call INFO_MESSAGE, "Remove files and directories that can be rebuilt")
87+ cleanest : cleaner # # Remove files and directories that can be rebuilt
88+ $(call INFO_MESSAGE, "🗑️🔥 Remove files and directories that can be rebuilt")
8989 rm -frv .eggs .tox .venv venv
9090
9191.PHONY : distclean
0 commit comments