File: __init__.py

package info (click to toggle)
xarray-safe-rcm 2024.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: python: 1,082; sh: 23; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
from importlib.metadata import version

from safe_rcm.api import open_rcm  # noqa: F401

try:
    __version__ = version("xarray-safe-rcm")
except Exception:
    __version__ = "9999"