1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 22:23:13 +00:00
Lumi/lib/metadata.py

18 lines
417 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__ = "Luminara"
__version__ = get_latest_git_tag()
__author__ = "wlinator"
__license__ = "MIT License"