vention-communication 0.3.4__tar.gz → 0.3.7__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.
- {vention_communication-0.3.4 → vention_communication-0.3.7}/PKG-INFO +3 -17
- vention_communication-0.3.7/pyproject.toml +19 -0
- vention_communication-0.3.4/pyproject.toml +0 -97
- {vention_communication-0.3.4 → vention_communication-0.3.7}/README.md +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/__init__.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/app.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/codegen.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/connect_router.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/decorators.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/entries.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/errors.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/registry.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/rpc_registry.py +0 -0
- {vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/typing_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vention-communication
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.7
|
|
4
4
|
Summary: A framework for communication between machine apps and other services.
|
|
5
5
|
License: Proprietary
|
|
6
6
|
Author: VentionCo
|
|
@@ -8,22 +8,8 @@ Requires-Python: >=3.10,<3.11
|
|
|
8
8
|
Classifier: License :: Other/Proprietary License
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
-
Requires-Dist:
|
|
12
|
-
Requires-Dist:
|
|
13
|
-
Requires-Dist: anyio (==4.11.0) ; python_version == "3.10"
|
|
14
|
-
Requires-Dist: click (==8.1.8) ; python_version == "3.10"
|
|
15
|
-
Requires-Dist: colorama (==0.4.6) ; python_version == "3.10" and platform_system == "Windows"
|
|
16
|
-
Requires-Dist: exceptiongroup (==1.3.0) ; python_version == "3.10"
|
|
17
|
-
Requires-Dist: fastapi (==0.121.1) ; python_version == "3.10"
|
|
18
|
-
Requires-Dist: h11 (==0.16.0) ; python_version == "3.10"
|
|
19
|
-
Requires-Dist: idna (==3.11) ; python_version == "3.10"
|
|
20
|
-
Requires-Dist: pydantic (==2.12.3) ; python_version == "3.10"
|
|
21
|
-
Requires-Dist: pydantic-core (==2.41.4) ; python_version == "3.10"
|
|
22
|
-
Requires-Dist: sniffio (==1.3.1) ; python_version == "3.10"
|
|
23
|
-
Requires-Dist: starlette (==0.48.0) ; python_version == "3.10"
|
|
24
|
-
Requires-Dist: typing-extensions (==4.15.0) ; python_version == "3.10"
|
|
25
|
-
Requires-Dist: typing-inspection (==0.4.2) ; python_version == "3.10"
|
|
26
|
-
Requires-Dist: uvicorn (==0.35.0) ; python_version == "3.10"
|
|
11
|
+
Requires-Dist: fastapi (==0.121.1)
|
|
12
|
+
Requires-Dist: uvicorn (>=0.35.0,<0.36.0)
|
|
27
13
|
Description-Content-Type: text/markdown
|
|
28
14
|
|
|
29
15
|
# Vention Communication
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "vention-communication"
|
|
3
|
+
version = "0.3.7"
|
|
4
|
+
description = "A framework for communication between machine apps and other services."
|
|
5
|
+
authors = [ "VentionCo" ]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
license = "Proprietary"
|
|
8
|
+
|
|
9
|
+
[[tool.poetry.packages]]
|
|
10
|
+
include = "communication"
|
|
11
|
+
from = "src"
|
|
12
|
+
|
|
13
|
+
[tool.poetry.dependencies]
|
|
14
|
+
python = ">=3.10,<3.11"
|
|
15
|
+
fastapi = "0.121.1"
|
|
16
|
+
uvicorn = "^0.35.0"
|
|
17
|
+
|
|
18
|
+
[tool.poetry.group.dev]
|
|
19
|
+
dependencies = { }
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "vention-communication"
|
|
3
|
-
version = "0.3.4"
|
|
4
|
-
description = "A framework for communication between machine apps and other services."
|
|
5
|
-
authors = [ "VentionCo" ]
|
|
6
|
-
readme = "README.md"
|
|
7
|
-
license = "Proprietary"
|
|
8
|
-
|
|
9
|
-
[[tool.poetry.packages]]
|
|
10
|
-
include = "communication"
|
|
11
|
-
from = "src"
|
|
12
|
-
|
|
13
|
-
[tool.poetry.dependencies]
|
|
14
|
-
python = ">=3.10,<3.11"
|
|
15
|
-
|
|
16
|
-
[tool.poetry.dependencies.annotated-doc]
|
|
17
|
-
version = "0.0.4"
|
|
18
|
-
markers = 'python_version == "3.10"'
|
|
19
|
-
optional = false
|
|
20
|
-
|
|
21
|
-
[tool.poetry.dependencies.annotated-types]
|
|
22
|
-
version = "0.7.0"
|
|
23
|
-
markers = 'python_version == "3.10"'
|
|
24
|
-
optional = false
|
|
25
|
-
|
|
26
|
-
[tool.poetry.dependencies.anyio]
|
|
27
|
-
version = "4.11.0"
|
|
28
|
-
markers = 'python_version == "3.10"'
|
|
29
|
-
optional = false
|
|
30
|
-
|
|
31
|
-
[tool.poetry.dependencies.click]
|
|
32
|
-
version = "8.1.8"
|
|
33
|
-
markers = 'python_version == "3.10"'
|
|
34
|
-
optional = false
|
|
35
|
-
|
|
36
|
-
[tool.poetry.dependencies.colorama]
|
|
37
|
-
version = "0.4.6"
|
|
38
|
-
markers = 'python_version == "3.10" and platform_system == "Windows"'
|
|
39
|
-
optional = false
|
|
40
|
-
|
|
41
|
-
[tool.poetry.dependencies.exceptiongroup]
|
|
42
|
-
version = "1.3.0"
|
|
43
|
-
markers = 'python_version == "3.10"'
|
|
44
|
-
optional = false
|
|
45
|
-
|
|
46
|
-
[tool.poetry.dependencies.fastapi]
|
|
47
|
-
version = "0.121.1"
|
|
48
|
-
markers = 'python_version == "3.10"'
|
|
49
|
-
optional = false
|
|
50
|
-
|
|
51
|
-
[tool.poetry.dependencies.h11]
|
|
52
|
-
version = "0.16.0"
|
|
53
|
-
markers = 'python_version == "3.10"'
|
|
54
|
-
optional = false
|
|
55
|
-
|
|
56
|
-
[tool.poetry.dependencies.idna]
|
|
57
|
-
version = "3.11"
|
|
58
|
-
markers = 'python_version == "3.10"'
|
|
59
|
-
optional = false
|
|
60
|
-
|
|
61
|
-
[tool.poetry.dependencies.pydantic-core]
|
|
62
|
-
version = "2.41.4"
|
|
63
|
-
markers = 'python_version == "3.10"'
|
|
64
|
-
optional = false
|
|
65
|
-
|
|
66
|
-
[tool.poetry.dependencies.pydantic]
|
|
67
|
-
version = "2.12.3"
|
|
68
|
-
markers = 'python_version == "3.10"'
|
|
69
|
-
optional = false
|
|
70
|
-
|
|
71
|
-
[tool.poetry.dependencies.sniffio]
|
|
72
|
-
version = "1.3.1"
|
|
73
|
-
markers = 'python_version == "3.10"'
|
|
74
|
-
optional = false
|
|
75
|
-
|
|
76
|
-
[tool.poetry.dependencies.starlette]
|
|
77
|
-
version = "0.48.0"
|
|
78
|
-
markers = 'python_version == "3.10"'
|
|
79
|
-
optional = false
|
|
80
|
-
|
|
81
|
-
[tool.poetry.dependencies.typing-extensions]
|
|
82
|
-
version = "4.15.0"
|
|
83
|
-
markers = 'python_version == "3.10"'
|
|
84
|
-
optional = false
|
|
85
|
-
|
|
86
|
-
[tool.poetry.dependencies.typing-inspection]
|
|
87
|
-
version = "0.4.2"
|
|
88
|
-
markers = 'python_version == "3.10"'
|
|
89
|
-
optional = false
|
|
90
|
-
|
|
91
|
-
[tool.poetry.dependencies.uvicorn]
|
|
92
|
-
version = "0.35.0"
|
|
93
|
-
markers = 'python_version == "3.10"'
|
|
94
|
-
optional = false
|
|
95
|
-
|
|
96
|
-
[tool.poetry.group.dev]
|
|
97
|
-
dependencies = { }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/connect_router.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/rpc_registry.py
RENAMED
|
File without changes
|
{vention_communication-0.3.4 → vention_communication-0.3.7}/src/communication/typing_utils.py
RENAMED
|
File without changes
|