You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
neovim-remote/Makefile

16 lines
214 B
Makefile

default: install
install:
python3 setup.py install
test:
pytest -v tests
upload: clean
python3 setup.py sdist bdist_wheel upload
clean:
rm -rf build dist neovim_remote.egg-info
.PHONY: install test upload