Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/async_geotiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[cogeo]: https://cogeo.org/
"""

from . import exceptions
from . import exceptions, versions
from ._array import Array
from ._geotiff import GeoTIFF
from ._overview import Overview
Expand All @@ -19,4 +19,5 @@
"Window",
"__version__",
"exceptions",
"versions",
]
12 changes: 12 additions & 0 deletions src/async_geotiff/versions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""Version information."""

from __future__ import annotations

from async_tiff import __version__ as async_tiff_version

from ._version import __version__


def get_versions() -> dict[str, str]:
"""Get package version information."""
return {"async-geotiff": __version__, "async-tiff": async_tiff_version}