1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-03-09 15:40:18 +00:00
VirtScreen/Makefile
2018-05-20 01:35:13 -04:00

19 lines
344 B
Makefile

# See https://packaging.python.org/tutorials/distributing-packages/#packaging-your-project
# for python packaging reference.
.PHONY: wheel install clean
wheel:
python setup.py bdist_wheel --universal
upload:
twine upload dist/*
install:
python setup.py install --user
launch:
./launch.sh
clean:
rm -rf build dist virtscreen.egg-info