stream-fusion-old/stream_fusion/version.py
LimeDrive 6fe4fe55f3 init
2024-07-09 04:13:29 +02:00

12 lines
No EOL
255 B
Python

import toml
from stream_fusion.settings import settings
def get_version():
with open(settings.version_path, "r") as f:
pyproject_data = toml.load(f)
return pyproject_data["tool"]["poetry"]["version"]
if __name__ == "__main__":
pass