1
0
Fork 0
SpotifyLinuxOpen/Makefile

12 lines
217 B
Makefile
Raw Normal View History

2024-03-21 06:36:38 +00:00
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/*