horus-runtime 0.1.0__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.
- horus_runtime-0.1.0/.gitignore +54 -0
- horus_runtime-0.1.0/LICENSE +661 -0
- horus_runtime-0.1.0/PKG-INFO +13 -0
- horus_runtime-0.1.0/pyproject.toml +174 -0
- horus_runtime-0.1.0/src/horus_builtin/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/artifact/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/artifact/file.py +51 -0
- horus_runtime-0.1.0/src/horus_builtin/artifact/folder.py +153 -0
- horus_runtime-0.1.0/src/horus_builtin/artifact/json.py +59 -0
- horus_runtime-0.1.0/src/horus_builtin/artifact/pickle.py +56 -0
- horus_runtime-0.1.0/src/horus_builtin/event/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/event/artifact_event.py +48 -0
- horus_runtime-0.1.0/src/horus_builtin/event/log_subscriber.py +54 -0
- horus_runtime-0.1.0/src/horus_builtin/event/task_event.py +33 -0
- horus_runtime-0.1.0/src/horus_builtin/event/workflow_event.py +32 -0
- horus_runtime-0.1.0/src/horus_builtin/executor/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/executor/python_exec.py +64 -0
- horus_runtime-0.1.0/src/horus_builtin/executor/python_fn.py +57 -0
- horus_runtime-0.1.0/src/horus_builtin/executor/shell.py +99 -0
- horus_runtime-0.1.0/src/horus_builtin/interaction/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/interaction/cli.py +202 -0
- horus_runtime-0.1.0/src/horus_builtin/interaction/common/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/interaction/common/confirm.py +55 -0
- horus_runtime-0.1.0/src/horus_builtin/interaction/common/dropdown.py +65 -0
- horus_runtime-0.1.0/src/horus_builtin/interaction/common/file.py +62 -0
- horus_runtime-0.1.0/src/horus_builtin/interaction/common/string.py +43 -0
- horus_runtime-0.1.0/src/horus_builtin/middleware/task_time.py +63 -0
- horus_runtime-0.1.0/src/horus_builtin/middleware/workflow_time.py +68 -0
- horus_runtime-0.1.0/src/horus_builtin/py.typed +0 -0
- horus_runtime-0.1.0/src/horus_builtin/runtime/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/runtime/command.py +95 -0
- horus_runtime-0.1.0/src/horus_builtin/runtime/python.py +125 -0
- horus_runtime-0.1.0/src/horus_builtin/runtime/python_string.py +52 -0
- horus_runtime-0.1.0/src/horus_builtin/target/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/target/local.py +129 -0
- horus_runtime-0.1.0/src/horus_builtin/task/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/task/function.py +101 -0
- horus_runtime-0.1.0/src/horus_builtin/task/horus_task.py +114 -0
- horus_runtime-0.1.0/src/horus_builtin/transfer/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/transfer/local_noop.py +45 -0
- horus_runtime-0.1.0/src/horus_builtin/workflow/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_builtin/workflow/horus_workflow.py +98 -0
- horus_runtime-0.1.0/src/horus_runtime/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/cli.py +45 -0
- horus_runtime-0.1.0/src/horus_runtime/context.py +145 -0
- horus_runtime-0.1.0/src/horus_runtime/core/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/artifact/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/artifact/base.py +186 -0
- horus_runtime-0.1.0/src/horus_runtime/core/artifact/exceptions.py +32 -0
- horus_runtime-0.1.0/src/horus_runtime/core/executor/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/executor/base.py +92 -0
- horus_runtime-0.1.0/src/horus_runtime/core/executor/exceptions.py +32 -0
- horus_runtime-0.1.0/src/horus_runtime/core/interaction/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/interaction/base.py +47 -0
- horus_runtime-0.1.0/src/horus_runtime/core/interaction/exceptions.py +133 -0
- horus_runtime-0.1.0/src/horus_runtime/core/interaction/renderer.py +65 -0
- horus_runtime-0.1.0/src/horus_runtime/core/interaction/transport.py +309 -0
- horus_runtime-0.1.0/src/horus_runtime/core/runtime/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/runtime/base.py +81 -0
- horus_runtime-0.1.0/src/horus_runtime/core/runtime/events.py +33 -0
- horus_runtime-0.1.0/src/horus_runtime/core/target/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/target/base.py +151 -0
- horus_runtime-0.1.0/src/horus_runtime/core/task/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/task/base.py +250 -0
- horus_runtime-0.1.0/src/horus_runtime/core/task/exceptions.py +40 -0
- horus_runtime-0.1.0/src/horus_runtime/core/task/status.py +58 -0
- horus_runtime-0.1.0/src/horus_runtime/core/transfer/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/transfer/exceptions.py +74 -0
- horus_runtime-0.1.0/src/horus_runtime/core/transfer/strategy.py +96 -0
- horus_runtime-0.1.0/src/horus_runtime/core/workflow/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/core/workflow/base.py +296 -0
- horus_runtime-0.1.0/src/horus_runtime/core/workflow/exceptions.py +43 -0
- horus_runtime-0.1.0/src/horus_runtime/core/workflow/status.py +68 -0
- horus_runtime-0.1.0/src/horus_runtime/event/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/event/async_loop.py +75 -0
- horus_runtime-0.1.0/src/horus_runtime/event/base.py +106 -0
- horus_runtime-0.1.0/src/horus_runtime/event/bus.py +188 -0
- horus_runtime-0.1.0/src/horus_runtime/event/subscriber.py +64 -0
- horus_runtime-0.1.0/src/horus_runtime/event/transport.py +59 -0
- horus_runtime-0.1.0/src/horus_runtime/i18n.py +96 -0
- horus_runtime-0.1.0/src/horus_runtime/locale/es/LC_MESSAGES/horus_runtime.mo +0 -0
- horus_runtime-0.1.0/src/horus_runtime/locale/es/LC_MESSAGES/horus_runtime.po +59 -0
- horus_runtime-0.1.0/src/horus_runtime/locale/messages.pot +50 -0
- horus_runtime-0.1.0/src/horus_runtime/logging.py +110 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/auto_middleware.py +154 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/executor.py +49 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/interaction.py +54 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/runtime.py +49 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/target.py +49 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/task.py +47 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/transfer.py +52 -0
- horus_runtime-0.1.0/src/horus_runtime/middleware/workflow.py +47 -0
- horus_runtime-0.1.0/src/horus_runtime/py.typed +0 -0
- horus_runtime-0.1.0/src/horus_runtime/registry/__init__.py +17 -0
- horus_runtime-0.1.0/src/horus_runtime/registry/auto_registry.py +429 -0
- horus_runtime-0.1.0/src/horus_runtime/registry/auto_registry_product.py +179 -0
- horus_runtime-0.1.0/src/horus_runtime/registry/exceptions.py +61 -0
- horus_runtime-0.1.0/src/horus_runtime/version.py +36 -0
- horus_runtime-0.1.0/tests/__init__.py +17 -0
- horus_runtime-0.1.0/tests/conftest.py +135 -0
- horus_runtime-0.1.0/tests/integration/test_runtime_integration.py +52 -0
- horus_runtime-0.1.0/tests/unit/artifact/test_artifact_base.py +237 -0
- horus_runtime-0.1.0/tests/unit/artifact/test_builtin_artifact.py +677 -0
- horus_runtime-0.1.0/tests/unit/boot/test_boot.py +52 -0
- horus_runtime-0.1.0/tests/unit/cli/test_cli.py +37 -0
- horus_runtime-0.1.0/tests/unit/event/common.py +89 -0
- horus_runtime-0.1.0/tests/unit/event/test_builtin_log_subscriber.py +137 -0
- horus_runtime-0.1.0/tests/unit/event/test_event_system.py +242 -0
- horus_runtime-0.1.0/tests/unit/executor/test_builtin_executor.py +184 -0
- horus_runtime-0.1.0/tests/unit/executor/test_executor_base.py +223 -0
- horus_runtime-0.1.0/tests/unit/i18n/test_i18n.py +86 -0
- horus_runtime-0.1.0/tests/unit/interaction/test_builtin_interactions.py +464 -0
- horus_runtime-0.1.0/tests/unit/interaction/test_interaction.py +435 -0
- horus_runtime-0.1.0/tests/unit/middleware/test_middleware.py +337 -0
- horus_runtime-0.1.0/tests/unit/registry/test_auto_registry.py +252 -0
- horus_runtime-0.1.0/tests/unit/registry/test_schema_generation.py +318 -0
- horus_runtime-0.1.0/tests/unit/runtime/test_builtin_runtime.py +137 -0
- horus_runtime-0.1.0/tests/unit/runtime/test_runtime_base.py +154 -0
- horus_runtime-0.1.0/tests/unit/target/test_local_target.py +178 -0
- horus_runtime-0.1.0/tests/unit/target/test_target_base.py +127 -0
- horus_runtime-0.1.0/tests/unit/task/conftest.py +33 -0
- horus_runtime-0.1.0/tests/unit/task/test_builtin_function_task.py +356 -0
- horus_runtime-0.1.0/tests/unit/task/test_builtin_task.py +337 -0
- horus_runtime-0.1.0/tests/unit/task/test_task_base.py +307 -0
- horus_runtime-0.1.0/tests/unit/test_logging.py +78 -0
- horus_runtime-0.1.0/tests/unit/test_main.py +43 -0
- horus_runtime-0.1.0/tests/unit/transfer/test_builtin_transfer.py +102 -0
- horus_runtime-0.1.0/tests/unit/transfer/test_transfer.py +140 -0
- horus_runtime-0.1.0/tests/unit/workflow/test_builtin_workflow.py +298 -0
- horus_runtime-0.1.0/tests/unit/workflow/test_workflow.py +143 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
.Python
|
|
7
|
+
build/
|
|
8
|
+
develop-eggs/
|
|
9
|
+
dist/
|
|
10
|
+
downloads/
|
|
11
|
+
eggs/
|
|
12
|
+
.eggs/
|
|
13
|
+
lib/
|
|
14
|
+
lib64/
|
|
15
|
+
parts/
|
|
16
|
+
sdist/
|
|
17
|
+
var/
|
|
18
|
+
wheels/
|
|
19
|
+
*.egg-info/
|
|
20
|
+
.installed.cfg
|
|
21
|
+
*.egg
|
|
22
|
+
*.ipynb
|
|
23
|
+
|
|
24
|
+
# Virtual environments
|
|
25
|
+
venv/
|
|
26
|
+
.venv/
|
|
27
|
+
ENV/
|
|
28
|
+
env/
|
|
29
|
+
|
|
30
|
+
# IDEs
|
|
31
|
+
.vscode/
|
|
32
|
+
.idea/
|
|
33
|
+
*.swp
|
|
34
|
+
*.swo
|
|
35
|
+
|
|
36
|
+
# Testing
|
|
37
|
+
.pytest_cache/
|
|
38
|
+
.coverage
|
|
39
|
+
htmlcov/
|
|
40
|
+
.tox/
|
|
41
|
+
|
|
42
|
+
# OS
|
|
43
|
+
.DS_Store
|
|
44
|
+
Thumbs.db
|
|
45
|
+
|
|
46
|
+
*.xml
|
|
47
|
+
|
|
48
|
+
# i18n
|
|
49
|
+
*.mo
|
|
50
|
+
|
|
51
|
+
# logs
|
|
52
|
+
logs/
|
|
53
|
+
|
|
54
|
+
no-commit/
|