forked from https://github.com/Evidlo/remarkable_mouse | patches include cool mapping mode that actually does proper aspect ratio conversion and fixing it for smartcard ssh setups
 
 

14 lines
187 B

# Evan Widloski - 2019-03-04
# makefile for building
.PHONY: dist
dist:
python setup.py sdist bdist_wheel
.PHONY: pypi
pypi: dist
twine upload dist/*
.PHONY: clean
clean:
rm dist/*