File size: 265 Bytes
7360bd5
 
 
7186d7e
7360bd5
 
 
 
 
 
 
 
 
 
7186d7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
install:
	python -m pip install --upgrade pip &&\
		python -m pip install -r requirements.txt
	python -m pip install tf-keras

test:
	python -m pytest -vv test_app.py

format:
	black *.py

lint:
	python -m pylint --disable=R,C app.py

all: install lint test format