Skip to content

Commit

Permalink
Adding Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lcsrodriguez committed Jul 9, 2023
1 parent a787629 commit fb30ed2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit fb30ed2

Please sign in to comment.