toposync 0.3.4__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.
@@ -0,0 +1,39 @@
1
+ .DS_Store
2
+ .env
3
+ .venv
4
+ __pycache__/
5
+ *.pyc
6
+ .pytest_cache/
7
+ .ruff_cache/
8
+
9
+ node_modules/
10
+ yarn.lock
11
+ .pnp.cjs
12
+ .pnp.loader.mjs
13
+ .yarn/
14
+ dist/
15
+ build/
16
+ .parcel-cache/
17
+
18
+ .toposync-data/
19
+ .toposync-processor-data
20
+ toposync-data/
21
+
22
+ *.log
23
+
24
+ *.ignore.md
25
+ ignore/
26
+
27
+ # Playwright
28
+ test-results/
29
+ playwright-report/
30
+ yolo*.pt
31
+
32
+ # Streaming extension engines are downloaded at runtime.
33
+ extensions/streaming/src/toposync_ext_streaming/bin/mediamtx/**/mediamtx*
34
+ extensions/streaming/src/toposync_ext_streaming/bin/ffmpeg/**/ffmpeg*
35
+
36
+ # Vision model artifacts are provisioned locally and must not be committed.
37
+ extensions/vision/models/
38
+
39
+ *.temporary.*
toposync-0.3.4/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mateus Calza
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,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: toposync
3
+ Version: 0.3.4
4
+ Summary: Toposync default application bundle.
5
+ License-Expression: MIT
6
+ License-File: LICENSE
7
+ Requires-Python: >=3.11
8
+ Requires-Dist: onnxruntime>=1.20
9
+ Requires-Dist: toposync-core==0.3.4
10
+ Requires-Dist: toposync-ext-cameras==0.1.1
11
+ Requires-Dist: toposync-ext-home-assistant==0.1.1
12
+ Requires-Dist: toposync-ext-images==0.1.0
13
+ Requires-Dist: toposync-ext-models==0.1.0
14
+ Requires-Dist: toposync-ext-structural==0.1.0
15
+ Requires-Dist: toposync-ext-vision==0.1.3
16
+ Description-Content-Type: text/markdown
17
+
18
+ # Toposync
19
+
20
+ Default Toposync application bundle.
21
+
22
+ This distribution installs:
23
+
24
+ - `toposync-core`
25
+ - `toposync-ext-structural`
26
+ - `toposync-ext-models`
27
+ - `toposync-ext-home-assistant`
28
+ - `toposync-ext-images`
29
+ - `toposync-ext-cameras`
30
+ - `toposync-ext-vision`
31
+ - `onnxruntime`
32
+
33
+ The official first-party vision runtime in this bundle is ONNX Runtime on CPU by default.
34
+
35
+ Alternative first-party bundles:
36
+
37
+ - `toposync-vision-cuda` for NVIDIA CUDA environments
38
+ - `toposync-vision-directml` for Windows DirectML environments
39
+
40
+ Optional first-party add-on bundles:
41
+
42
+ - `toposync-streaming` for the MediaMTX/FFmpeg streaming stack
@@ -0,0 +1,25 @@
1
+ # Toposync
2
+
3
+ Default Toposync application bundle.
4
+
5
+ This distribution installs:
6
+
7
+ - `toposync-core`
8
+ - `toposync-ext-structural`
9
+ - `toposync-ext-models`
10
+ - `toposync-ext-home-assistant`
11
+ - `toposync-ext-images`
12
+ - `toposync-ext-cameras`
13
+ - `toposync-ext-vision`
14
+ - `onnxruntime`
15
+
16
+ The official first-party vision runtime in this bundle is ONNX Runtime on CPU by default.
17
+
18
+ Alternative first-party bundles:
19
+
20
+ - `toposync-vision-cuda` for NVIDIA CUDA environments
21
+ - `toposync-vision-directml` for Windows DirectML environments
22
+
23
+ Optional first-party add-on bundles:
24
+
25
+ - `toposync-streaming` for the MediaMTX/FFmpeg streaming stack
@@ -0,0 +1,34 @@
1
+ [project]
2
+ name = "toposync"
3
+ version = "0.3.4"
4
+ description = "Toposync default application bundle."
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ license-files = ["LICENSE"]
8
+ requires-python = ">=3.11"
9
+ dependencies = [
10
+ "toposync-core==0.3.4",
11
+ "toposync-ext-structural==0.1.0",
12
+ "toposync-ext-models==0.1.0",
13
+ "toposync-ext-home-assistant==0.1.1",
14
+ "toposync-ext-images==0.1.0",
15
+ "toposync-ext-cameras==0.1.1",
16
+ "toposync-ext-vision==0.1.3",
17
+ "onnxruntime>=1.20",
18
+ ]
19
+
20
+ [build-system]
21
+ requires = ["hatchling>=1.25"]
22
+ build-backend = "hatchling.build"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ only-include = ["README.md"]
26
+
27
+ [tool.uv.sources]
28
+ toposync-core = { path = "../.." }
29
+ toposync-ext-structural = { path = "../../extensions/structural" }
30
+ toposync-ext-models = { path = "../../extensions/models" }
31
+ toposync-ext-home-assistant = { path = "../../extensions/home_assistant" }
32
+ toposync-ext-images = { path = "../../extensions/images" }
33
+ toposync-ext-cameras = { path = "../../extensions/cameras" }
34
+ toposync-ext-vision = { path = "../../extensions/vision" }