chore: add make install target, clean target, debian packaging script, and update README with full documentation

This commit is contained in:
2025-05-05 18:29:54 +00:00
parent cf87fa4a91
commit bc402f5303
7 changed files with 264 additions and 28 deletions
+8
View File
@@ -7,6 +7,7 @@ ensure_env:
-@python3 -m venv .venv
./.venv/bin/python -m pip install black
./.venv/bin/python -m pip install build
./.venv/bin/python -m pip install -e .
build:
./.venv/bin/python -m build .
@@ -19,3 +20,10 @@ run:
test:
./.venv/bin/python -m unittest zhurnal.tests
clean:
rm -rf .venv
rm -rf build
rm -rf dist
find . -type d -name "__pycache__" -exec rm -rf {} +
find . -type f -name "*.pyc" -delete