Initial commit

This commit is contained in:
2024-11-27 15:28:30 +01:00
commit 8ad5b590de
24 changed files with 429 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
all: ensure_env format build install test
format:
./.venv/bin/python -m black .
ensure_env:
-@python3 -m venv .venv
./.venv/bin/python -m pip install black
./.venv/bin/python -m pip install build
build:
./.venv/bin/python -m build .
install:
./.venv/bin/python -m pip install -e .
run:
python -m zhurnal "ping -c 1000 google.nl"
test:
./.venv/bin/python -m unittest zhurnal.tests