Coverage for python/gsfit/__init__.py: 100%
12 statements
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-07 13:12 +0000
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-07 13:12 +0000
1from diagnostic_and_simulation_base import get_version
3get_version("gsfit") # needs to be run before importing version_storage
4from diagnostic_and_simulation_base import version_storage
6from .gsfit import Gsfit
8__datetime__ = version_storage.__datetime__
9__git_is_dirty__ = version_storage.__git_is_dirty__
10__git_short_hash__ = version_storage.__git_short_hash__
11__python__ = version_storage.__python__
12__python_library__ = version_storage.__python_library__
13__user__ = version_storage.__user__
14__version__ = version_storage.__version__
16# Define public interfaces
17__all__ = [
18 "__datetime__",
19 "__git_is_dirty__",
20 "__git_short_hash__",
21 "__python__",
22 "__python_library__",
23 "__user__",
24 "__version__",
25 "Gsfit",
26]