licor/Makefile

19 lines
219 B
Makefile
Raw Normal View History

2018-01-31 09:37:50 +00:00
clean:
python3 setup.py clean
2018-01-31 10:09:14 +00:00
-rm dist/*
2018-01-31 09:37:50 +00:00
sdist: clean
python3 setup.py sdist
bdist_wheel: clean
python3 setup.py bdist_wheel
install:
python3 setup.py install
upload: sdist bdist_wheel
twine upload dist/*