Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1"""Public Python package for HyperIso."""
2
3from __future__ import annotations
4
5from importlib.metadata import PackageNotFoundError, version
6
7try:
8 __version__ = version("pyhyperiso")
9except PackageNotFoundError:
10 # Source-tree fallback used before an editable or wheel installation.
11 __version__ = "1.0.3"
12
13__all__ = ["__version__"]