2
0
mirror of https://github.com/mhinz/neovim-remote synced 2024-11-11 13:10:34 +00:00
neovim-remote/Makefile

16 lines
214 B
Makefile
Raw Normal View History

default: install
install:
python3 setup.py install
2018-03-12 15:23:40 +00:00
test:
pytest -v tests
upload: clean
2017-07-25 23:52:02 +00:00
python3 setup.py sdist bdist_wheel upload
2016-10-06 18:47:46 +00:00
clean:
2017-04-27 11:27:47 +00:00
rm -rf build dist neovim_remote.egg-info
2016-10-06 18:47:46 +00:00
2018-03-12 15:23:40 +00:00
.PHONY: install test upload