runtimepy 5.11.4__py3-none-any.whl → 5.11.6__py3-none-any.whl

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.
runtimepy/__init__.py CHANGED
@@ -1,7 +1,7 @@
1
1
  # =====================================
2
2
  # generator=datazen
3
- # version=3.1.4
4
- # hash=e4bd25a4e8683a203d0244d24322fe41
3
+ # version=3.2.0
4
+ # hash=ed6e0aad96cfd1bee734d433a5c2cbf0
5
5
  # =====================================
6
6
 
7
7
  """
@@ -10,7 +10,7 @@ Useful defaults and other package metadata.
10
10
 
11
11
  DESCRIPTION = "A framework for implementing Python services."
12
12
  PKG_NAME = "runtimepy"
13
- VERSION = "5.11.4"
13
+ VERSION = "5.11.6"
14
14
 
15
15
  # runtimepy-specific content.
16
16
  METRICS_NAME = "metrics"
runtimepy/__main__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # =====================================
2
2
  # generator=datazen
3
- # version=3.1.4
3
+ # version=3.2.0
4
4
  # hash=b28a8111bcc727e854c1f6474a3c4232
5
5
  # =====================================
6
6
  """
runtimepy/app.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # =====================================
2
2
  # generator=datazen
3
- # version=3.1.4
3
+ # version=3.2.0
4
4
  # hash=a4deafb4ebcc179d8d85f9376d22dc92
5
5
  # =====================================
6
6
 
runtimepy/commands/all.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # =====================================
2
2
  # generator=datazen
3
- # version=3.1.4
3
+ # version=3.2.0
4
4
  # hash=1814b7f7fae3556a0dbeec37141e4182
5
5
  # =====================================
6
6
 
runtimepy/entry.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # =====================================
2
2
  # generator=datazen
3
- # version=3.1.4
3
+ # version=3.2.0
4
4
  # hash=79c31d1280a6e97b5d326aecb758c597
5
5
  # =====================================
6
6
 
@@ -46,19 +46,31 @@ AnyPrimitiveType = _Union[
46
46
  PrimitiveTypes: dict[str, AnyPrimitiveType] = {
47
47
  # Integer types.
48
48
  Int8.name: Int8,
49
+ "int8_t": Int8,
49
50
  Int16.name: Int16,
51
+ "int16_t": Int16,
50
52
  Int32.name: Int32,
53
+ "int32_t": Int32,
51
54
  Int64.name: Int64,
55
+ "int64_t": Int64,
52
56
  Uint8.name: Uint8,
57
+ "uint8_t": Uint8,
53
58
  Uint16.name: Uint16,
59
+ "uint16_t": Uint16,
54
60
  Uint32.name: Uint32,
61
+ "uint32_t": Uint32,
55
62
  Uint64.name: Uint64,
63
+ "uint64_t": Uint64,
56
64
  # Floating-point types.
57
65
  Half.name: Half,
66
+ "std::float16_t": Half,
58
67
  Float.name: Float,
68
+ "std::float32_t": Float,
59
69
  Double.name: Double,
70
+ "std::float64_t": Double,
60
71
  # Boolean type.
61
72
  Bool.name: Bool,
73
+ "boolean": Bool,
62
74
  }
63
75
 
64
76
  PrimitiveTypelike = _Union[str, AnyPrimitiveType]
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: runtimepy
3
- Version: 5.11.4
3
+ Version: 5.11.6
4
4
  Summary: A framework for implementing Python services.
5
- Home-page: https://github.com/vkottler/runtimepy
6
- Author: Vaughn Kottler
7
- Author-email: Vaughn Kottler <vaughn@libre-embedded.com>
8
- Maintainer-email: Vaughn Kottler <vaughn@libre-embedded.com>
5
+ Home-page: https://github.com/libre-embedded/runtimepy
6
+ Author: Libre Embedded
7
+ Author-email: Libre Embedded <vaughn@libre-embedded.com>
8
+ Maintainer-email: Libre Embedded <vaughn@libre-embedded.com>
9
+ License-Expression: MIT
9
10
  Classifier: Programming Language :: Python :: 3.12
10
11
  Classifier: Programming Language :: Python :: 3.13
11
12
  Classifier: Operating System :: Microsoft :: Windows
@@ -13,14 +14,13 @@ Classifier: Operating System :: MacOS
13
14
  Classifier: Operating System :: POSIX :: Linux
14
15
  Classifier: Operating System :: Unix
15
16
  Classifier: Development Status :: 5 - Production/Stable
16
- Classifier: License :: OSI Approved :: MIT License
17
17
  Requires-Python: >=3.12
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
+ Requires-Dist: vcorelib>=3.5.1
20
21
  Requires-Dist: websockets
21
- Requires-Dist: svgen>=0.7.4
22
22
  Requires-Dist: psutil
23
- Requires-Dist: vcorelib>=3.5.1
23
+ Requires-Dist: svgen>=0.7.4
24
24
  Requires-Dist: aiofiles
25
25
  Provides-Extra: test
26
26
  Requires-Dist: pylint; extra == "test"
@@ -49,29 +49,22 @@ Dynamic: requires-python
49
49
  <!--
50
50
  =====================================
51
51
  generator=datazen
52
- version=3.1.4
53
- hash=0a7881b3e47a699bb3a235518a84f5ab
52
+ version=3.2.0
53
+ hash=0f29d06f506a6b2bb9e2da20ac1e5c08
54
54
  =====================================
55
55
  -->
56
56
 
57
- # runtimepy ([5.11.4](https://pypi.org/project/runtimepy/))
57
+ # runtimepy ([5.11.6](https://pypi.org/project/runtimepy/))
58
58
 
59
59
  [![python](https://img.shields.io/pypi/pyversions/runtimepy.svg)](https://pypi.org/project/runtimepy/)
60
- ![Build Status](https://github.com/vkottler/runtimepy/workflows/Python%20Package/badge.svg)
61
- [![codecov](https://codecov.io/gh/vkottler/runtimepy/branch/master/graphs/badge.svg?branch=master)](https://codecov.io/github/vkottler/runtimepy)
60
+ ![Build Status](https://github.com/libre-embedded/runtimepy/workflows/Python%20Package/badge.svg)
61
+ [![codecov](https://codecov.io/gh/libre-embedded/runtimepy/branch/master/graphs/badge.svg?branch=master)](https://codecov.io/github/libre-embedded/runtimepy)
62
62
  ![PyPI - Status](https://img.shields.io/pypi/status/runtimepy)
63
63
  ![Dependents (via libraries.io)](https://img.shields.io/librariesio/dependents/pypi/runtimepy)
64
64
 
65
65
  *A framework for implementing Python services.*
66
66
 
67
- ## Documentation
68
-
69
- ### Generated
70
-
71
- * By [sphinx-apidoc](https://vkottler.github.io/python/sphinx/runtimepy)
72
- (What's [`sphinx-apidoc`](https://www.sphinx-doc.org/en/master/man/sphinx-apidoc.html)?)
73
- * By [pydoc](https://vkottler.github.io/python/pydoc/runtimepy.html)
74
- (What's [`pydoc`](https://docs.python.org/3/library/pydoc.html)?)
67
+ ([interface documentation](https://libre-embedded.github.io/python/runtimepy))
75
68
 
76
69
  ## Python Version Support
77
70
 
@@ -1,8 +1,8 @@
1
- runtimepy/__init__.py,sha256=CL65SCL1H_Hd4dTF8u4ghL1IxZDybzOzh0wC1Vbbflg,391
2
- runtimepy/__main__.py,sha256=OPAed6hggoQdw-6QAR62mqLC-rCkdDhOq0wyeS2vDRI,332
3
- runtimepy/app.py,sha256=sTvatbsGZ2Hdel36Si_WUbNMtg9CzsJyExr5xjIcxDE,970
1
+ runtimepy/__init__.py,sha256=izBH8CK-HWYK_UHQiHpQRmmjGvYiRdYdDuQc0ndraBI,391
2
+ runtimepy/__main__.py,sha256=Aeo8mj2c2be30XmJQgOlzGSlkZKr4050Yoz1KN12MNk,332
3
+ runtimepy/app.py,sha256=t5mKNeh988WgTxM4EfWwgqRPnydi3g5O_s3HfJ8qaL8,970
4
4
  runtimepy/dev_requirements.txt,sha256=j0dh11ztJAzfaUL0iFheGjaZj9ppDzmTkclTT8YKO8c,230
5
- runtimepy/entry.py,sha256=3672ccoslf2h8Wg5M_SuW6SoEx0oslRoi0ngZsgjNz8,1954
5
+ runtimepy/entry.py,sha256=l2F3pbA6txmhi3PS_v-M0YAmNwieErlJh8YNaAc1s_4,1954
6
6
  runtimepy/mapping.py,sha256=VQK1vzmQVvYYKI85_II37-hIEbvgL3PzNy-WI6TTo80,5091
7
7
  runtimepy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  runtimepy/requirements.txt,sha256=PdID4t7w3qsEoNwrMR-SJoH5OQ9oIUcpesKJC4AiU64,124
@@ -29,7 +29,7 @@ runtimepy/codec/protocol/base.py,sha256=ezNX-93NBChNpMszkkcx-0X_YzdU2oOFdqAMfKaE
29
29
  runtimepy/codec/protocol/json.py,sha256=qmcoCcTRS-HgVYLPBsCAPhekAgZmHX9JBfGivLl3b0Y,4349
30
30
  runtimepy/codec/system/__init__.py,sha256=fIOUo7QhwI81YAIz9myeSo1oo94De41sK5HKJ-sAdfY,7959
31
31
  runtimepy/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- runtimepy/commands/all.py,sha256=jH2dsmkqyBFe_2ZlPFpko0UCMW3fFfJsuGIbeJFbDoQ,1619
32
+ runtimepy/commands/all.py,sha256=h4qprGG1ZZLGtNVGT9vJYwAxcM7oiCW76E9bBLsJzAA,1619
33
33
  runtimepy/commands/arbiter.py,sha256=CtTMRYpqCAN3vWHkkr9jqWpoF7JGNXafKIBFmkarAfc,1567
34
34
  runtimepy/commands/common.py,sha256=NvZdeIFBHAF52c1n7vqD59DW6ywc-rG5iC5MpuhGf-c,2449
35
35
  runtimepy/commands/mtu.py,sha256=LFFjTU4SsuV3j7Mhx_WuKa5lfdfMm70zJvDWToVrP7E,1357
@@ -249,7 +249,7 @@ runtimepy/primitives/serializable/base.py,sha256=EIj7Ao0sZaXCXgZari35kimjkr3SzFW
249
249
  runtimepy/primitives/serializable/fixed.py,sha256=rhr6uVbo0Lvazk4fLI7iei-vVNEwP1J8-LoUjW1NaMI,1077
250
250
  runtimepy/primitives/serializable/framer.py,sha256=rsoGQz6vD7v_EMu67aqxVqbvmbs6hjytXZ8dHLBM0SQ,1815
251
251
  runtimepy/primitives/serializable/prefixed.py,sha256=oQXW0pGRovKolheL5ZL2m9aNVMCtKTAi5OlC9KW0iKI,2855
252
- runtimepy/primitives/types/__init__.py,sha256=JUJpDFIjDUYo-Jnx5sZnkmbGLVjIHVsRcvBjVlJ7fsA,1588
252
+ runtimepy/primitives/types/__init__.py,sha256=AcjLKotJ3A-9jNgThca1dBKsGKENPUGPiJAb6aauTpA,1876
253
253
  runtimepy/primitives/types/base.py,sha256=rR1JkExMV2FJmvU-WfgnikG-UtFfsXGs_eBCIV6II1A,4879
254
254
  runtimepy/primitives/types/bool.py,sha256=J0SYdp-9eIRs337d9qnw2f7IXTPQj_F21ugMIJ8-Hy4,547
255
255
  runtimepy/primitives/types/bounds.py,sha256=Hc2GWu4qJMEAF8IiDWFA_6VCNUtrNf5RmiEbSJ76dJI,1145
@@ -285,9 +285,9 @@ runtimepy/tui/task.py,sha256=nUZo9fuOC-k1Wpqdzkv9v1tQirCI28fZVgcC13Ijvus,1093
285
285
  runtimepy/tui/channels/__init__.py,sha256=evDaiIn-YS9uGhdo8ZGtP9VK1ek6sr_P1nJ9JuSET0o,4536
286
286
  runtimepy/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
287
  runtimepy/ui/controls.py,sha256=yvT7h3thbYaitsakcIAJ90EwKzJ4b-jnc6p3UuVf_XE,1241
288
- runtimepy-5.11.4.dist-info/licenses/LICENSE,sha256=yKBRwbO-cOPBrlpsZmJkkSa33DfY31aE8t7lZ0DwlUo,1071
289
- runtimepy-5.11.4.dist-info/METADATA,sha256=irNLpzsQisHnkApv2NMrx7BftuY0HCY5nxwVswd-u2E,9395
290
- runtimepy-5.11.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
291
- runtimepy-5.11.4.dist-info/entry_points.txt,sha256=-btVBkYv7ybcopqZ_pRky-bEzu3vhbaG3W3Z7ERBiFE,51
292
- runtimepy-5.11.4.dist-info/top_level.txt,sha256=0jPmh6yqHyyJJDwEID-LpQly-9kQ3WRMjH7Lix8peLg,10
293
- runtimepy-5.11.4.dist-info/RECORD,,
288
+ runtimepy-5.11.6.dist-info/licenses/LICENSE,sha256=yKBRwbO-cOPBrlpsZmJkkSa33DfY31aE8t7lZ0DwlUo,1071
289
+ runtimepy-5.11.6.dist-info/METADATA,sha256=mFBW40p3emrSq2maTGGpTWHR7bXOhNSsK8w3w993VAg,9141
290
+ runtimepy-5.11.6.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
291
+ runtimepy-5.11.6.dist-info/entry_points.txt,sha256=-btVBkYv7ybcopqZ_pRky-bEzu3vhbaG3W3Z7ERBiFE,51
292
+ runtimepy-5.11.6.dist-info/top_level.txt,sha256=0jPmh6yqHyyJJDwEID-LpQly-9kQ3WRMjH7Lix8peLg,10
293
+ runtimepy-5.11.6.dist-info/RECORD,,