1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 22:23:13 +00:00
Lumi/sb_tools/resources.py
wlinator 1ec6792636 Fetch version from Git tags.
__version__ is now fetched from Git tags using a subprocess, this way I don't have to change the code each time I want to up the version.
2023-06-19 10:52:27 -04:00

19 lines
478 B
Python

import subprocess
def get_latest_git_tag():
try:
command = ['git', 'describe', '--abbrev=0', '--tags']
output = subprocess.check_output(command).decode().strip()
return output
except subprocess.CalledProcessError as e:
print(f"Error: {e}")
return "BETA"
__title__ = "RCU"
__version__ = get_latest_git_tag()
__author__ = "Esther J. J."
__author_email__ = "dokimakimaki@gmail.com"
__license__ = "GNU GENERAL PUBLIC LICENSE v2"