chore: add make install target, clean target, debian packaging script, and update README with full documentation
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user