Browse Source

Install local package as well for import paths

master
Luke Murphy 3 years ago
parent
commit
58d537279f
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 3
      makefile

3
makefile

@ -2,7 +2,8 @@ default: run
setup:
@python3 -m venv .venv && \
.venv/bin/pip install -r requirements.txt
.venv/bin/pip install -r requirements.txt && \
pip install -e .
run:
@cd library && python page.py

Loading…
Cancel
Save