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

17 lines
238 B
Makefile

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