File size: 132 Bytes
704e2e9
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
install:
	pip install --upgrade pip
	pip install -r requirements.txt

run:
	python app.py

format:
	black *.py

all: install format