mirror of
https://github.com/Ladebeze66/llm_lab.git
synced 2025-12-16 11:47:49 +01:00
7 lines
161 B
Python
7 lines
161 B
Python
from ._importlib import metadata
|
|
|
|
try:
|
|
__version__ = metadata.version('setuptools') or '0.dev0+unknown'
|
|
except Exception:
|
|
__version__ = '0.dev0+unknown'
|