1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 22:23:13 +00:00
Lumi/lib/resources.py
2024-02-28 15:59:07 +01:00

19 lines
479 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__ = "Racu"
__version__ = get_latest_git_tag()
__author__ = "stupidbeaver"
__author_email__ = "dokimakimaki@gmail.com"
__license__ = "GNU GENERAL PUBLIC LICENSE v2"