2
0
mirror of https://github.com/mhinz/neovim-remote synced 2024-11-13 07:10:27 +00:00
neovim-remote/Makefile
2017-04-27 13:27:47 +02:00

14 lines
199 B
Makefile

default: install
install:
python3 setup.py install
upload: clean
python3 setup.py sdist bdist_wheel
twine upload dist/*
clean:
rm -rf build dist neovim_remote.egg-info
.PHONY: install upload