From a16ca1dda9fd5f2ef3b21d5d472407a19a01276d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ju=CC=88rgen=20Hock?= Date: Sun, 24 Mar 2024 16:33:23 +0100 Subject: [PATCH] Add shortcut for editable installation --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 33dd941..d5bc5e1 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ -.PHONY: help boot build install install-test reinstall uninstall upload upload-test which +.PHONY: help boot build install install-test uninstall upload upload-test which help: @echo boot @echo build @echo install + @echo install-edit @echo install-test - @echo reinstall @echo uninstall @echo upload @echo upload-test @@ -22,6 +22,9 @@ build: install: @python -m pip install --upgrade remucs +install-edit: + @python -m pip install --editable . + install-test: @python -m pip install --index-url https://test.pypi.org/simple --upgrade remucs