diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91a8758 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +all: release + +clean: + @echo Cleaning... + -rm -r ./build + -rm -r ./dist + +build_wheel: + python3 setup.py sdist bdist_wheel + +release: build_wheel + +upload: + @echo Uploading to PyPi... + twine upload dist/* diff --git a/setup.py b/setup.py index c29e67e..e173c5a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="loramon", - version="0.9.6", + version="0.9.7", author="Mark Qvist", author_email="mark@unsigned.io", description="LoRa packet sniffer for RNode hardware",