flake
This commit is contained in:
parent
8364260ec0
commit
9b07740b53
6 changed files with 153 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
PY ?= python3
|
||||
VENV ?= .venv
|
||||
|
||||
.PHONY: venv deps run
|
||||
|
||||
venv:
|
||||
$(PY) -m venv $(VENV)
|
||||
$(VENV)/bin/python -m pip install -U pip
|
||||
|
||||
deps: venv
|
||||
$(VENV)/bin/pip install -r requirements.txt
|
||||
|
||||
run: deps
|
||||
$(VENV)/bin/python luz-musica.py
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue