~dricottone/fmg-timesheets

ref: cab4c59713aeea180456717c05ba8f8d42e0597b fmg-timesheets/Makefile -rw-r--r-- 325 bytes
cab4c597Dominic Ricottone Data pipeline error 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: clean
clean:
	rm --force --recursive __pycache__
	rm --force --recursive **/__pycache__
	rm --force --recursive .venv

.venv:
	python3 -m venv .venv
	bash -c "source .venv/bin/activate && python3 -m pip install pdfminer.six"

.PHONY: run
run: .venv
	bash -c "source .venv/bin/activate && python3 main.py data/*.pdf"