This commit is contained in:
ltadeu6 2026-04-15 16:39:18 -03:00
parent 8364260ec0
commit 9b07740b53
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D
6 changed files with 153 additions and 0 deletions

15
Makefile Normal file
View 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