PyMPDATA_examples

PyMPDATA_examples package includes common Python modules used in PyMPDATA smoke tests and in example notebooks (but the package wheels do not include the notebooks). adv_diff

 1"""
 2PyMPDATA_examples package includes common Python modules used in PyMPDATA smoke tests
 3and in example notebooks (but the package wheels do not include the notebooks).
 4![adv_diff](https://github.com/open-atmos/PyMPDATA/releases/download/tip/advection_diffusion.gif)
 5
 6"""
 7
 8from importlib.metadata import PackageNotFoundError, version
 9
10try:
11    __version__ = version(__name__)
12except PackageNotFoundError:
13    # package is not installed
14    pass