Added makefile

pull/11/head
Mark Qvist 2021-12-01 19:28:27 +01:00
parent 38bbf19421
commit 1ca2493c36
1 changed files with 23 additions and 0 deletions

23
Makefile 100644
View File

@ -0,0 +1,23 @@
all: release
clean:
@echo Cleaning...
-rm -r ./build
-rm -r ./dist
remove_symlinks:
@echo Removing symlinks for build...
-rm ./RNS
create_symlinks:
@echo Creating symlinks...
-ln -s ../Reticulum/RNS ./
build_wheel:
python3 setup.py sdist bdist_wheel
release: remove_symlinks build_wheel create_symlinks
upload:
@echo Uploading to PyPi...
twine upload dist/*