From b316e11d95caf11c043a7728871976173a948a98 Mon Sep 17 00:00:00 2001 From: trueold89 Date: Thu, 21 Mar 2024 09:36:38 +0300 Subject: [PATCH] makefile --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3075128 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +build: clean + python -m venv build_venv + ./build_venv/bin/pip install setuptools + ./build_venv/bin/python ./setup.py sdist + +clean: + @rm -rf build_venv + @rm -rf SpotifyLinuxOpen.egg-info + +install: + pip install dist/*