roborean-engine 0.1.2__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.
- roborean_engine-0.1.2/.gitignore +27 -0
- roborean_engine-0.1.2/PKG-INFO +26 -0
- roborean_engine-0.1.2/pyproject.toml +47 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/append_text.json +18 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/copy_variable.json +16 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/drawing_insert_polyline.json +17 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/fake_network.json +12 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/flow_append_paragraph.json +17 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/noop.json +11 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/raster_draw_text.json +17 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/replace_named_value.json +19 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/set_variable.json +16 -0
- roborean_engine-0.1.2/src/roborean_engine/bits/manifests/sheet_set_cells.json +18 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
venv/
|
|
2
|
+
venv-qt5/
|
|
3
|
+
venv-qt6/
|
|
4
|
+
.venv/
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
.pytest_cache/
|
|
8
|
+
.mypy_cache/
|
|
9
|
+
.coverage
|
|
10
|
+
htmlcov/
|
|
11
|
+
dist/
|
|
12
|
+
build/
|
|
13
|
+
*.egg-info/
|
|
14
|
+
*.tsbuildinfo
|
|
15
|
+
node_modules/
|
|
16
|
+
.pnpm-store/
|
|
17
|
+
.DS_Store
|
|
18
|
+
.idea/
|
|
19
|
+
.vscode/*.local
|
|
20
|
+
playground/
|
|
21
|
+
.e2e-ai/
|
|
22
|
+
**/test-results/
|
|
23
|
+
**/playwright-report/
|
|
24
|
+
research/
|
|
25
|
+
.roborean/
|
|
26
|
+
.roborean-sql-artifacts/
|
|
27
|
+
*.db
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: roborean-engine
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: Deterministic Roborean compiler, runner, and durable run service
|
|
5
|
+
Project-URL: Homepage, https://github.com/TNick/roborean
|
|
6
|
+
Project-URL: Repository, https://github.com/TNick/roborean
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Requires-Dist: jsonschema>=4.23
|
|
10
|
+
Requires-Dist: roborean-documents-base>=0.1.1
|
|
11
|
+
Requires-Dist: roborean-documents-docx>=0.1.1
|
|
12
|
+
Requires-Dist: roborean-documents-dxf>=0.1.1
|
|
13
|
+
Requires-Dist: roborean-documents-image>=0.1.1
|
|
14
|
+
Requires-Dist: roborean-documents-markdown>=0.1.1
|
|
15
|
+
Requires-Dist: roborean-documents-text>=0.1.1
|
|
16
|
+
Requires-Dist: roborean-documents-xlsx>=0.1.1
|
|
17
|
+
Requires-Dist: roborean-plugins-base>=0.1.1
|
|
18
|
+
Requires-Dist: roborean-spec>=0.1.1
|
|
19
|
+
Requires-Dist: roborean-storage-base>=0.1.1
|
|
20
|
+
Requires-Dist: roborean-storage-dict>=0.1.1
|
|
21
|
+
Requires-Dist: roborean-storage-sqlalchemy>=0.1.1
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: black>=24.0; extra == 'dev'
|
|
24
|
+
Requires-Dist: flake8>=7.0; extra == 'dev'
|
|
25
|
+
Requires-Dist: isort>=5.0; extra == 'dev'
|
|
26
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "roborean-engine"
|
|
7
|
+
version = "0.1.2"
|
|
8
|
+
description = "Deterministic Roborean compiler, runner, and durable run service"
|
|
9
|
+
requires-python = ">=3.11"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"jsonschema>=4.23",
|
|
13
|
+
"roborean-spec>=0.1.1",
|
|
14
|
+
"roborean-storage-base>=0.1.1",
|
|
15
|
+
"roborean-storage-dict>=0.1.1",
|
|
16
|
+
"roborean-storage-sqlalchemy>=0.1.1",
|
|
17
|
+
"roborean-plugins-base>=0.1.1",
|
|
18
|
+
"roborean-documents-base>=0.1.1",
|
|
19
|
+
"roborean-documents-text>=0.1.1",
|
|
20
|
+
"roborean-documents-markdown>=0.1.1",
|
|
21
|
+
"roborean-documents-xlsx>=0.1.1",
|
|
22
|
+
"roborean-documents-docx>=0.1.1",
|
|
23
|
+
"roborean-documents-image>=0.1.1",
|
|
24
|
+
"roborean-documents-dxf>=0.1.1",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[project.optional-dependencies]
|
|
28
|
+
dev = ["pytest>=8.0", "black>=24.0", "isort>=5.0", "flake8>=7.0"]
|
|
29
|
+
|
|
30
|
+
[project.scripts]
|
|
31
|
+
roborean = "roborean_engine.cli:main"
|
|
32
|
+
|
|
33
|
+
[project.entry-points."roborean.bit_types"]
|
|
34
|
+
"roborean.noop" = "roborean_engine.bits.registry:load_noop_bit_type"
|
|
35
|
+
"roborean.set_variable" = "roborean_engine.bits.registry:load_set_variable_bit_type"
|
|
36
|
+
"roborean.copy_variable" = "roborean_engine.bits.registry:load_copy_variable_bit_type"
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
[project.urls]
|
|
40
|
+
Homepage = "https://github.com/TNick/roborean"
|
|
41
|
+
Repository = "https://github.com/TNick/roborean"
|
|
42
|
+
|
|
43
|
+
[tool.hatch.build.targets.wheel]
|
|
44
|
+
packages = ["src/roborean_engine"]
|
|
45
|
+
|
|
46
|
+
[tool.hatch.build]
|
|
47
|
+
include = ["src/roborean_engine/bits/manifests/*.json"]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.append_text",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "text"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"text": { "type": "string" },
|
|
10
|
+
"op": { "type": "string" }
|
|
11
|
+
},
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
},
|
|
14
|
+
"effectClass": "document",
|
|
15
|
+
"capabilities": ["document.write"],
|
|
16
|
+
"readsFromConfig": false,
|
|
17
|
+
"browserSafe": true
|
|
18
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.copy_variable",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["from", "to"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"from": {"type": "string", "minLength": 1},
|
|
9
|
+
"to": {"type": "string", "minLength": 1}
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "workspace",
|
|
14
|
+
"capabilities": ["workspace.read", "workspace.write"],
|
|
15
|
+
"browserSafe": true
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.drawing_insert_polyline",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "ops"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"ops": { "type": "array" }
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "document",
|
|
14
|
+
"capabilities": ["document.write"],
|
|
15
|
+
"readsFromConfig": false,
|
|
16
|
+
"browserSafe": false
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.flow_append_paragraph",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "ops"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"ops": { "type": "array" }
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "document",
|
|
14
|
+
"capabilities": ["document.write"],
|
|
15
|
+
"readsFromConfig": false,
|
|
16
|
+
"browserSafe": true
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.raster_draw_text",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "ops"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"ops": { "type": "array" }
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "document",
|
|
14
|
+
"capabilities": ["document.write"],
|
|
15
|
+
"readsFromConfig": false,
|
|
16
|
+
"browserSafe": false
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.replace_named_value",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId", "name"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"name": { "type": "string" },
|
|
10
|
+
"fromKey": { "type": "string" },
|
|
11
|
+
"value": {}
|
|
12
|
+
},
|
|
13
|
+
"additionalProperties": false
|
|
14
|
+
},
|
|
15
|
+
"effectClass": "document",
|
|
16
|
+
"capabilities": ["document.write"],
|
|
17
|
+
"readsFromConfig": true,
|
|
18
|
+
"browserSafe": true
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.set_variable",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["key", "value"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"key": {"type": "string", "minLength": 1},
|
|
9
|
+
"value": {"$ref": "workspace-value.schema.json"}
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
},
|
|
13
|
+
"effectClass": "workspace",
|
|
14
|
+
"capabilities": ["workspace.write"],
|
|
15
|
+
"browserSafe": true
|
|
16
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"typeId": "roborean.sheet_set_cells",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"configSchema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["documentId"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"documentId": { "type": "string" },
|
|
9
|
+
"cells": { "type": "array" },
|
|
10
|
+
"formulas": { "type": "array" }
|
|
11
|
+
},
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
},
|
|
14
|
+
"effectClass": "document",
|
|
15
|
+
"capabilities": ["document.write"],
|
|
16
|
+
"readsFromConfig": true,
|
|
17
|
+
"browserSafe": false
|
|
18
|
+
}
|