lumera 0.9.3__tar.gz → 0.9.4__tar.gz
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.
- {lumera-0.9.3 → lumera-0.9.4}/PKG-INFO +1 -1
- {lumera-0.9.3 → lumera-0.9.4}/lumera/__init__.py +6 -1
- {lumera-0.9.3 → lumera-0.9.4}/lumera.egg-info/PKG-INFO +1 -1
- {lumera-0.9.3 → lumera-0.9.4}/pyproject.toml +1 -1
- {lumera-0.9.3 → lumera-0.9.4}/lumera/_utils.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/automations.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/exceptions.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/google.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/integrations/__init__.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/integrations/google.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/llm.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/locks.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/pb.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/sdk.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/storage.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera/webhooks.py +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera.egg-info/SOURCES.txt +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera.egg-info/dependency_links.txt +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera.egg-info/requires.txt +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/lumera.egg-info/top_level.txt +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/setup.cfg +0 -0
- {lumera-0.9.3 → lumera-0.9.4}/tests/test_sdk.py +0 -0
|
@@ -5,7 +5,12 @@ This SDK provides helpers for automations running within the Lumera environment
|
|
|
5
5
|
to interact with the Lumera API and define dynamic user interfaces.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
from importlib.metadata import version, PackageNotFoundError
|
|
9
|
+
|
|
10
|
+
try:
|
|
11
|
+
__version__ = version("lumera")
|
|
12
|
+
except PackageNotFoundError:
|
|
13
|
+
__version__ = "unknown" # Not installed (e.g., running from source)
|
|
9
14
|
|
|
10
15
|
# Import new modules (as modules, not individual functions)
|
|
11
16
|
from . import automations, exceptions, integrations, llm, locks, pb, storage, webhooks
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|