petal-user-journey-coordinator 0.1.5__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.
- petal_user_journey_coordinator/__init__.py +18 -0
- petal_user_journey_coordinator/controllers.py +3406 -0
- petal_user_journey_coordinator/data_model.py +556 -0
- petal_user_journey_coordinator/plugin.py +2167 -0
- petal_user_journey_coordinator-0.1.5.dist-info/METADATA +87 -0
- petal_user_journey_coordinator-0.1.5.dist-info/RECORD +8 -0
- petal_user_journey_coordinator-0.1.5.dist-info/WHEEL +4 -0
- petal_user_journey_coordinator-0.1.5.dist-info/entry_points.txt +7 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""
|
|
2
|
+
petal-user-journey-coordinator - A DroneLeaf Petal
|
|
3
|
+
===============================
|
|
4
|
+
|
|
5
|
+
This petal provides functionality for the DroneLeaf ecosystem.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import logging
|
|
9
|
+
from importlib.metadata import PackageNotFoundError, version as _pkg_version
|
|
10
|
+
|
|
11
|
+
logger = logging.getLogger(__name__)
|
|
12
|
+
|
|
13
|
+
try:
|
|
14
|
+
# ⚠️ Use the *distribution* name (what you put in pyproject.toml), not necessarily the import name
|
|
15
|
+
__version__ = _pkg_version("petal-user-journey-coordinator")
|
|
16
|
+
except PackageNotFoundError:
|
|
17
|
+
# Useful during local development before install; pick what you prefer here
|
|
18
|
+
__version__ = "0.0.0"
|