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
3
from
__future__
import
annotations
4
5
from
importlib.metadata
import
PackageNotFoundError, version
6
7
try
:
8
__version__ = version(
"pyhyperiso"
)
9
except
PackageNotFoundError:
10
# Source-tree fallback used before an editable or wheel installation.
11
__version__ =
"1.0.3"
12
13
__all__ = [
"__version__"
]
Hyperiso
pyhyperiso
__init__.py
Generated by
1.9.8