diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..89b7bbc Binary files /dev/null and b/.DS_Store differ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e86bf10 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +all: + @echo "Installing the requirements" + @python3 -m pip3 install -r requirements.txt + +init: + @echo "Creating output folders..." + @mkdir -p "out" + +install: + @echo "Installing the requirements" + @python3 -m pip3 install -r requirements.txt + +clean: + @echo "Cleaning output folders..." + @rm -rf out/*.csv \ No newline at end of file