net-mesh-sdk 0.19.0__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.
Files changed (30) hide show
  1. net_mesh_sdk-0.19.0/PKG-INFO +24 -0
  2. net_mesh_sdk-0.19.0/README.md +1086 -0
  3. net_mesh_sdk-0.19.0/pyproject.toml +41 -0
  4. net_mesh_sdk-0.19.0/setup.cfg +4 -0
  5. net_mesh_sdk-0.19.0/src/net_mesh_sdk.egg-info/PKG-INFO +24 -0
  6. net_mesh_sdk-0.19.0/src/net_mesh_sdk.egg-info/SOURCES.txt +28 -0
  7. net_mesh_sdk-0.19.0/src/net_mesh_sdk.egg-info/dependency_links.txt +1 -0
  8. net_mesh_sdk-0.19.0/src/net_mesh_sdk.egg-info/requires.txt +7 -0
  9. net_mesh_sdk-0.19.0/src/net_mesh_sdk.egg-info/top_level.txt +1 -0
  10. net_mesh_sdk-0.19.0/src/net_sdk/__init__.py +186 -0
  11. net_mesh_sdk-0.19.0/src/net_sdk/capability.py +1720 -0
  12. net_mesh_sdk-0.19.0/src/net_sdk/capability_schema.py +563 -0
  13. net_mesh_sdk-0.19.0/src/net_sdk/channel.py +116 -0
  14. net_mesh_sdk-0.19.0/src/net_sdk/cortex.py +103 -0
  15. net_mesh_sdk-0.19.0/src/net_sdk/deck.py +673 -0
  16. net_mesh_sdk-0.19.0/src/net_sdk/mesh.py +247 -0
  17. net_mesh_sdk-0.19.0/src/net_sdk/meshdb.py +86 -0
  18. net_mesh_sdk-0.19.0/src/net_sdk/meshos.py +487 -0
  19. net_mesh_sdk-0.19.0/src/net_sdk/netdb.py +62 -0
  20. net_mesh_sdk-0.19.0/src/net_sdk/node.py +310 -0
  21. net_mesh_sdk-0.19.0/src/net_sdk/redex.py +74 -0
  22. net_mesh_sdk-0.19.0/src/net_sdk/stream.py +175 -0
  23. net_mesh_sdk-0.19.0/tests/test_capability_enhancements.py +563 -0
  24. net_mesh_sdk-0.19.0/tests/test_capability_validation.py +307 -0
  25. net_mesh_sdk-0.19.0/tests/test_channel_subscribe_opts.py +105 -0
  26. net_mesh_sdk-0.19.0/tests/test_deck_wrapper.py +118 -0
  27. net_mesh_sdk-0.19.0/tests/test_predicate_debug_report.py +123 -0
  28. net_mesh_sdk-0.19.0/tests/test_predicate_trace.py +87 -0
  29. net_mesh_sdk-0.19.0/tests/test_redact_debug_report.py +129 -0
  30. net_mesh_sdk-0.19.0/tests/test_wrapper_modules.py +218 -0
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: net-mesh-sdk
3
+ Version: 0.19.0
4
+ Summary: Ergonomic Python SDK for the Net mesh network
5
+ License: Apache-2.0
6
+ Project-URL: Homepage, https://github.com/ai-2070/net
7
+ Project-URL: Repository, https://github.com/ai-2070/net
8
+ Keywords: net,mesh,event-bus,streaming,ai,llm,inference
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Software Development :: Libraries
19
+ Requires-Python: >=3.10
20
+ Requires-Dist: net-mesh>=0.19.0
21
+ Provides-Extra: pydantic
22
+ Requires-Dist: pydantic>=2.0; extra == "pydantic"
23
+ Provides-Extra: test
24
+ Requires-Dist: pytest>=9.0.0; extra == "test"