We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
versions.get_versions
1 parent 4b5360e commit cfb16bbCopy full SHA for cfb16bb
src/async_geotiff/__init__.py
@@ -3,7 +3,7 @@
3
[cogeo]: https://cogeo.org/
4
"""
5
6
-from . import exceptions
+from . import exceptions, versions
7
from ._array import Array
8
from ._geotiff import GeoTIFF
9
from ._overview import Overview
@@ -19,4 +19,5 @@
19
"Window",
20
"__version__",
21
"exceptions",
22
+ "versions",
23
]
src/async_geotiff/versions.py
@@ -0,0 +1,12 @@
1
+"""Version information."""
2
+
+from __future__ import annotations
+from async_tiff import __version__ as async_tiff_version
+from ._version import __version__
10
+def get_versions() -> dict[str, str]:
11
+ """Get package version information."""
12
+ return {"async-geotiff": __version__, "async-tiff": async_tiff_version}
0 commit comments