evo-hq-cli 0.2.0__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.
- evo/__init__.py +8 -0
- evo/cli.py +968 -0
- evo/core.py +717 -0
- evo/dashboard.py +158 -0
- evo/locking.py +36 -0
- evo/scratchpad.py +228 -0
- evo_hq_cli-0.2.0.dist-info/METADATA +138 -0
- evo_hq_cli-0.2.0.dist-info/RECORD +13 -0
- evo_hq_cli-0.2.0.dist-info/WHEEL +5 -0
- evo_hq_cli-0.2.0.dist-info/entry_points.txt +3 -0
- evo_hq_cli-0.2.0.dist-info/licenses/LICENSE +201 -0
- evo_hq_cli-0.2.0.dist-info/licenses/NOTICE +4 -0
- evo_hq_cli-0.2.0.dist-info/top_level.txt +1 -0
evo/__init__.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""evo package."""
|
|
2
|
+
|
|
3
|
+
__all__ = ["__version__", "DISTRIBUTION_NAME"]
|
|
4
|
+
|
|
5
|
+
# PyPI distribution name. Stable string used by skill checks to distinguish
|
|
6
|
+
# our binary from unrelated `evo` packages on PATH (e.g. the SLAM tool).
|
|
7
|
+
DISTRIBUTION_NAME = "evo-hq-cli"
|
|
8
|
+
__version__ = "0.2.0"
|