LoRaMon/Makefile

16 lines
201 B
Makefile
Raw Permalink Normal View History

2022-01-11 02:43:41 +01:00
all: release
clean:
2022-01-11 02:45:10 +01:00
@echo Cleaning...
-rm -r ./build
-rm -r ./dist
2022-01-11 02:43:41 +01:00
build_wheel:
2022-01-11 02:45:10 +01:00
python3 setup.py sdist bdist_wheel
2022-01-11 02:43:41 +01:00
release: build_wheel
upload:
2022-01-11 02:45:10 +01:00
@echo Uploading to PyPi...
twine upload dist/*