abdullahashfaqvirk's picture
chore: add Makefile for install, run and format tasks
704e2e9
raw
history blame contribute delete
132 Bytes
install:
pip install --upgrade pip
pip install -r requirements.txt
run:
python app.py
format:
black *.py
all: install format