From fab12ad9bf9f997797034950f289fe41a79dcf5a Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Mon, 1 Jun 2026 14:26:47 +0200 Subject: [PATCH] Updated build scripts --- Makefile | 5 +++++ setup.py | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 5fe5f96..cb7f141 100644 --- a/Makefile +++ b/Makefile @@ -26,5 +26,10 @@ build_spkg: remove_symlinks build_sdist create_symlinks release: remove_symlinks build_wheel build_spkg create_symlinks upload: + @echo Ready to publish release over Reticulum + @read VOID + rngit release rns://7649a50d84610232d1416b41d2896aff/reticulum/lxmf create $$(python setup.py --getversion):dist --name lxmf + +upload-pip: @echo Uploading to PyPi... twine upload dist/*.whl dist/*.tar.gz diff --git a/setup.py b/setup.py index beb1432..82521ec 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +import sys import setuptools with open("README.md", "r") as fh: @@ -5,6 +6,10 @@ with open("README.md", "r") as fh: exec(open("LXMF/_version.py", "r").read()) +if "--getversion" in sys.argv: + print(__version__, end="") + exit(0) + setuptools.setup( name="lxmf", version=__version__,