From bbbcac9c8e8506cfe9590d65d5c976e13b731c06 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 16 Apr 2023 13:07:16 +0100 Subject: [PATCH] Adds makefile, for running lib scripts --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9716e46 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: all install_requirements download combine + +all: install_requirements download combine + +install_requirements: + pip install -r lib/requirements.txt + +download: + python lib/download.py + +combine: + python lib/combine.py + +validate: + python lib/validate.py