Updated build scripts

This commit is contained in:
Mark Qvist 2026-06-01 14:26:47 +02:00
commit fab12ad9bf
No known key found for this signature in database
2 changed files with 10 additions and 0 deletions

View file

@ -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__,