osslag 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
osslag/__init__.py CHANGED
@@ -0,0 +1,9 @@
1
+ from importlib.metadata import version
2
+
3
+ __version__ = version("osslag")
4
+ __all__ = ["__version__", "get_version"]
5
+
6
+
7
+ def get_version() -> str:
8
+ """Return the current version of osslag."""
9
+ return __version__