vrpc 3.0.2__tar.gz → 3.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vrpc
3
- Version: 3.0.2
3
+ Version: 3.0.3
4
4
  Summary: Asynchronous remote procedure calls for Python over MQTT
5
5
  Author-email: "Dr. Burkhard C. Heisen" <burkhard.heisen@heisenware.com>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "vrpc"
7
- version = "3.0.2"
7
+ version = "3.0.3"
8
8
  description = "Asynchronous remote procedure calls for Python over MQTT"
9
9
  readme = {file = "README.md", content-type = "text/markdown"}
10
10
  requires-python = ">=3.8"
@@ -0,0 +1,8 @@
1
+ # vrpc/__init__.py
2
+
3
+ from .adapter import VrpcAdapter
4
+ from .agent import VrpcAgent
5
+ from .client import VrpcClient
6
+
7
+ # Explicitly define what is exposed when someone imports * from vrpc
8
+ __all__ = ["VrpcAdapter", "VrpcAgent", "VrpcClient"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vrpc
3
- Version: 3.0.2
3
+ Version: 3.0.3
4
4
  Summary: Asynchronous remote procedure calls for Python over MQTT
5
5
  Author-email: "Dr. Burkhard C. Heisen" <burkhard.heisen@heisenware.com>
6
6
  License: MIT License
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes