mirror of
https://github.com/pyMC-dev/pyMC_Repeater.git
synced 2026-06-26 13:01:06 +02:00
10 lines
235 B
Python
10 lines
235 B
Python
try:
|
|
from ._version import version as __version__
|
|
except ImportError:
|
|
try:
|
|
from importlib.metadata import version
|
|
|
|
__version__ = version("openhop_repeater")
|
|
except Exception:
|
|
__version__ = "unknown"
|