From e3481a4a35091b32b6fbee80c1c9ba2b6d7b50d6 Mon Sep 17 00:00:00 2001 From: erdgeist Date: Sun, 22 Dec 2024 21:53:57 +0100 Subject: Rework of halfnarp and fullnarp into a self contained repository. Still WIP --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5ae5aea --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +all: install + +import: venv + venv/bin/python3 ./halfnarp2.py -i + +do-export: venv + venv/bin/python3 ./halfnarp2.py -e + +run: venv + PYTHONIOENCODING=utf-8 venv/bin/python3 ./halfnarp2.py + +run: venv + PYTHONIOENCODING=utf-8 venv/bin/python3 ./fullnarp.py + +venv: + python3 -m venv ./venv + +install: venv + venv/bin/pip install --upgrade pip + venv/bin/pip install -r requirements.txt -- cgit v1.2.3