9 lines
117 B
Makefile
9 lines
117 B
Makefile
|
all: run
|
||
|
|
||
|
run:
|
||
|
venv/bin/python3 folding.py
|
||
|
|
||
|
setup:
|
||
|
python3 -m venv venv
|
||
|
venv/bin/pip3 install -r requirements.txt
|