"""Implements the package initialization logic"""importosfromhyfiimportHyFIfrom._versionimport__version__# Read the package path from the current directory__package_path__=os.path.dirname(__file__)# Initialize the global HyFI objectHyFI.initialize_global_hyfi(package_path=__package_path__,version=__version__,plugins=[],)# Initialize the loggerHyFI.setLogger()
[docs]defget_version()->str:"""Get the package version."""return__version__