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/*