Skip to content

Commit

Permalink
feat: Add thalassa.__version__
Browse files Browse the repository at this point in the history
  • Loading branch information
pmav99 committed Feb 3, 2024
1 parent 0fe60d2 commit 0650ec3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions thalassa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"""
from __future__ import annotations

import importlib.metadata

from .api import open_dataset
from .normalization import normalize
from .plotting import plot
Expand All @@ -12,7 +14,10 @@
from .utils import crop


__version__ = importlib.metadata.version("thalassa")

__all__: list[str] = [
"__version__",
"crop",
"normalize",
"open_dataset",
Expand Down

0 comments on commit 0650ec3

Please sign in to comment.