We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8650632 commit a7b93adCopy full SHA for a7b93ad
tadata_sdk/__init__.py
@@ -0,0 +1,7 @@
1
+try:
2
+ from importlib.metadata import version
3
+
4
+ __version__ = version("tadata-sdk")
5
+except Exception: # pragma: no cover
6
+ # Fallback for local development
7
+ __version__ = "0.0.0.dev0" # pragma: no cover
0 commit comments