Browse Source
Install local package as well for import paths
master
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
2 additions and
1 deletions
-
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 |
|
|
|