Updated makefile

This commit is contained in:
Mark Qvist
2026-05-22 23:34:06 +02:00
parent c2af9f80d1
commit b6d2ebbfc7
2 changed files with 10 additions and 1 deletions
+5
View File
@@ -21,5 +21,10 @@ build_wheel:
release: remove_symlinks build_wheel create_symlinks
upload:
@echo Ready to publish release over Reticulum
@read VOID
rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/nomadnet create $$(python setup.py --getversion):dist --name nomadnet
upload-pip:
@echo Uploading to PyPi...
twine upload dist/*.whl dist/*.tar.gz
+5 -1
View File
@@ -1,4 +1,4 @@
import sys
import setuptools
exec(open("nomadnet/_version.py", "r").read())
@@ -6,6 +6,10 @@ exec(open("nomadnet/_version.py", "r").read())
with open("README.md", "r") as fh:
long_description = fh.read()
if "--getversion" in sys.argv:
print(__version__, end="")
exit(0)
package_data = {
"": [
"examples/messageboard/*",