ocean-runner 0.1.0__py3-none-any.whl → 0.1.2__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.
- {ocean_runner-0.1.0.dist-info → ocean_runner-0.1.2.dist-info}/METADATA +11 -3
- ocean_runner-0.1.2.dist-info/RECORD +4 -0
- ocean_runner-0.1.0.dist-info/RECORD +0 -4
- {ocean_runner-0.1.0.dist-info → ocean_runner-0.1.2.dist-info}/WHEEL +0 -0
- {ocean_runner-0.1.0.dist-info → ocean_runner-0.1.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ocean-runner
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A fluent API for OceanProtocol algorithms
|
|
5
5
|
Project-URL: Homepage, https://github.com/AgrospAI/ocean-runner
|
|
6
6
|
Project-URL: Issues, https://github.com/AgrospAI/ocean-runner/issues
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: AgospAI <agrospai@udl.cat>, Christian López <christian.lopez@udl.cat>
|
|
8
8
|
License: Copyright 2025 spin3l
|
|
9
9
|
|
|
10
10
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
@@ -61,6 +61,9 @@ Algorithm(
|
|
|
61
61
|
|
|
62
62
|
logger: ... # type: logging.Logger
|
|
63
63
|
# Custom logger to use.
|
|
64
|
+
|
|
65
|
+
source_paths: ... # type: Iterable[Path]
|
|
66
|
+
# Source paths to include in the PATH
|
|
64
67
|
|
|
65
68
|
environment: ...
|
|
66
69
|
# type: ocean_runner.Environment. Mock of environment variables.
|
|
@@ -93,6 +96,11 @@ Algorithm(
|
|
|
93
96
|
NOTE: it's not recommended to catch exceptions this way. Should re-raise and halt the execution.
|
|
94
97
|
"""
|
|
95
98
|
|
|
99
|
+
source_paths: [Path("/algorithm/src")],
|
|
100
|
+
"""
|
|
101
|
+
Source paths to include in the PATH. '/algorithm/src' is the default since our templates place the algorithm source files there.
|
|
102
|
+
"""
|
|
103
|
+
|
|
96
104
|
logger: logger,
|
|
97
105
|
"""
|
|
98
106
|
Custom logger to use in the Algorithm.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
ocean_runner-0.1.2.dist-info/METADATA,sha256=MguVYXLegClFt928OhzC-tmT41JgjnAe4aR7zRnDpwc,5780
|
|
2
|
+
ocean_runner-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
3
|
+
ocean_runner-0.1.2.dist-info/licenses/LICENSE,sha256=_B25KqK4amoADWkMN150tnZFm_Fy7VvZpvIC8ZydWdI,1053
|
|
4
|
+
ocean_runner-0.1.2.dist-info/RECORD,,
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
ocean_runner-0.1.0.dist-info/METADATA,sha256=RNcTJa7JJDpda1CbBiRFUQgBANV0h8PR_b-TNuYgS2U,5420
|
|
2
|
-
ocean_runner-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
3
|
-
ocean_runner-0.1.0.dist-info/licenses/LICENSE,sha256=_B25KqK4amoADWkMN150tnZFm_Fy7VvZpvIC8ZydWdI,1053
|
|
4
|
-
ocean_runner-0.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|