inorbit-edge-executor 1.0.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.
Files changed (24) hide show
  1. inorbit_edge_executor-1.0.0/LICENSE +21 -0
  2. inorbit_edge_executor-1.0.0/PKG-INFO +41 -0
  3. inorbit_edge_executor-1.0.0/README.md +26 -0
  4. inorbit_edge_executor-1.0.0/inorbit_edge_executor/__init__.py +0 -0
  5. inorbit_edge_executor-1.0.0/inorbit_edge_executor/behavior_tree.py +1051 -0
  6. inorbit_edge_executor-1.0.0/inorbit_edge_executor/datatypes.py +315 -0
  7. inorbit_edge_executor-1.0.0/inorbit_edge_executor/db.py +69 -0
  8. inorbit_edge_executor-1.0.0/inorbit_edge_executor/dummy_backend.py +55 -0
  9. inorbit_edge_executor-1.0.0/inorbit_edge_executor/exceptions.py +43 -0
  10. inorbit_edge_executor-1.0.0/inorbit_edge_executor/inorbit.py +548 -0
  11. inorbit_edge_executor-1.0.0/inorbit_edge_executor/logger.py +168 -0
  12. inorbit_edge_executor-1.0.0/inorbit_edge_executor/mission.py +68 -0
  13. inorbit_edge_executor-1.0.0/inorbit_edge_executor/observable.py +38 -0
  14. inorbit_edge_executor-1.0.0/inorbit_edge_executor/sqlite_backend.py +240 -0
  15. inorbit_edge_executor-1.0.0/inorbit_edge_executor/worker.py +172 -0
  16. inorbit_edge_executor-1.0.0/inorbit_edge_executor/worker_pool.py +366 -0
  17. inorbit_edge_executor-1.0.0/inorbit_edge_executor.egg-info/PKG-INFO +41 -0
  18. inorbit_edge_executor-1.0.0/inorbit_edge_executor.egg-info/SOURCES.txt +22 -0
  19. inorbit_edge_executor-1.0.0/inorbit_edge_executor.egg-info/dependency_links.txt +1 -0
  20. inorbit_edge_executor-1.0.0/inorbit_edge_executor.egg-info/requires.txt +54 -0
  21. inorbit_edge_executor-1.0.0/inorbit_edge_executor.egg-info/top_level.txt +1 -0
  22. inorbit_edge_executor-1.0.0/pyproject.toml +64 -0
  23. inorbit_edge_executor-1.0.0/setup.cfg +4 -0
  24. inorbit_edge_executor-1.0.0/setup.py +61 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright 2024 InOrbit, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.1
2
+ Name: inorbit_edge_executor
3
+ Version: 1.0.0
4
+ Summary: InOrbit Edge Missions Executor
5
+ Author: Mariano Cereda, Hernan Badenes
6
+ Author-email: Mariano Cereda <mariano.cereda@inorbit.ai>, Hernan Badenes <herchu@inorbit.ai>
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ Provides-Extra: dev
13
+ Provides-Extra: docs
14
+ License-File: LICENSE
15
+
16
+ # InOrbit Edge Executor
17
+
18
+ This package allows to execute InOrbit missions in connector robots.
19
+
20
+ ### Set up development environment
21
+
22
+ 1. Create and activate the python virtual environment
23
+
24
+ ```
25
+ python3 -m virtualenv venv
26
+ source venv/bin/activate
27
+ ```
28
+
29
+ 2. Install the dependencies
30
+
31
+ ```
32
+ pip install .[dev]
33
+ ```
34
+
35
+ ### Run tests
36
+
37
+ Open a command line and run the following command:
38
+
39
+ ```
40
+ tox
41
+ ```
@@ -0,0 +1,26 @@
1
+ # InOrbit Edge Executor
2
+
3
+ This package allows to execute InOrbit missions in connector robots.
4
+
5
+ ### Set up development environment
6
+
7
+ 1. Create and activate the python virtual environment
8
+
9
+ ```
10
+ python3 -m virtualenv venv
11
+ source venv/bin/activate
12
+ ```
13
+
14
+ 2. Install the dependencies
15
+
16
+ ```
17
+ pip install .[dev]
18
+ ```
19
+
20
+ ### Run tests
21
+
22
+ Open a command line and run the following command:
23
+
24
+ ```
25
+ tox
26
+ ```