knoc-plugin-template/src/knoc_plugin_template/__init__.py

11 lines
344 B
Python
Raw Normal View History

2025-05-28 17:36:06 +02:00
import importlib.metadata
try:
from dunamai import Version, Style
__version__ = Version.from_git().serialize(style=Style.SemVer, dirty=True)
except ImportError:
# __name__ can be used if the package name is the same
# as the directory. Otherwise, specify it explicitely.
__version__ = importlib.metadata.version(__name__)