toposync-vision-cuda 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.*
@@ -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,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: toposync-vision-cuda
3
+ Version: 0.3.4
4
+ Summary: Toposync application bundle with ONNX Runtime CUDA acceleration.
5
+ License-Expression: MIT
6
+ License-File: LICENSE
7
+ Requires-Python: >=3.11
8
+ Requires-Dist: onnxruntime-gpu>=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 Vision CUDA bundle
19
+
20
+ Alternative Toposync application bundle with ONNX Runtime GPU (`onnxruntime-gpu`) for NVIDIA acceleration.
21
+
22
+ This bundle is intended for environments where the CUDA runtime is available and you want the first-party `vision` stack to use `CUDAExecutionProvider` when present.
@@ -0,0 +1,5 @@
1
+ # Toposync Vision CUDA bundle
2
+
3
+ Alternative Toposync application bundle with ONNX Runtime GPU (`onnxruntime-gpu`) for NVIDIA acceleration.
4
+
5
+ This bundle is intended for environments where the CUDA runtime is available and you want the first-party `vision` stack to use `CUDAExecutionProvider` when present.
@@ -0,0 +1,34 @@
1
+ [project]
2
+ name = "toposync-vision-cuda"
3
+ version = "0.3.4"
4
+ description = "Toposync application bundle with ONNX Runtime CUDA acceleration."
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-gpu>=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" }