gist-protocol 0.0.1__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,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: gist-protocol
3
+ Version: 0.0.1
4
+ Summary: Semantic transport protocol for bandwidth-constrained channels
5
+ Author: Nolan Figueroa
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/nolanjf/gist-protocol
8
+ Project-URL: Documentation, https://github.com/nolanjf/gist-protocol
9
+ Project-URL: Repository, https://github.com/nolanjf/gist-protocol
10
+ Keywords: gist,protocol,semantic,transport,codebook,compression
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering
20
+ Classifier: Topic :: Communications
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+
24
+ # gist-protocol
25
+
26
+ Semantic transport protocol for bandwidth-constrained channels.
27
+
28
+ GIST transmits compact codebook coordinates instead of high-dimensional feature vectors — enabling real-time semantic communication over constrained links like BLE, LoRa, and satellite.
29
+
30
+ ## Status
31
+
32
+ **Coming soon.** This package is a name reservation. The full implementation is in active development.
33
+
34
+ ## What to expect
35
+
36
+ - Codebook-based encode/decode for semantic features
37
+ - Session management with HMAC authentication
38
+ - Support for audio, ECG, IMU, and text domains
39
+ - Embedded C library for microcontrollers (Cortex-M4+)
40
+ - Sub-millisecond encode latency, 2-byte wire payloads
41
+
42
+ ## Install
43
+
44
+ ```bash
45
+ pip install gist-protocol
46
+ ```
47
+
48
+ ## CLI
49
+
50
+ ```bash
51
+ gist # prints project info
52
+ gist --version # prints version
53
+ ```
@@ -0,0 +1,30 @@
1
+ # gist-protocol
2
+
3
+ Semantic transport protocol for bandwidth-constrained channels.
4
+
5
+ GIST transmits compact codebook coordinates instead of high-dimensional feature vectors — enabling real-time semantic communication over constrained links like BLE, LoRa, and satellite.
6
+
7
+ ## Status
8
+
9
+ **Coming soon.** This package is a name reservation. The full implementation is in active development.
10
+
11
+ ## What to expect
12
+
13
+ - Codebook-based encode/decode for semantic features
14
+ - Session management with HMAC authentication
15
+ - Support for audio, ECG, IMU, and text domains
16
+ - Embedded C library for microcontrollers (Cortex-M4+)
17
+ - Sub-millisecond encode latency, 2-byte wire payloads
18
+
19
+ ## Install
20
+
21
+ ```bash
22
+ pip install gist-protocol
23
+ ```
24
+
25
+ ## CLI
26
+
27
+ ```bash
28
+ gist # prints project info
29
+ gist --version # prints version
30
+ ```
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: gist-protocol
3
+ Version: 0.0.1
4
+ Summary: Semantic transport protocol for bandwidth-constrained channels
5
+ Author: Nolan Figueroa
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/nolanjf/gist-protocol
8
+ Project-URL: Documentation, https://github.com/nolanjf/gist-protocol
9
+ Project-URL: Repository, https://github.com/nolanjf/gist-protocol
10
+ Keywords: gist,protocol,semantic,transport,codebook,compression
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering
20
+ Classifier: Topic :: Communications
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+
24
+ # gist-protocol
25
+
26
+ Semantic transport protocol for bandwidth-constrained channels.
27
+
28
+ GIST transmits compact codebook coordinates instead of high-dimensional feature vectors — enabling real-time semantic communication over constrained links like BLE, LoRa, and satellite.
29
+
30
+ ## Status
31
+
32
+ **Coming soon.** This package is a name reservation. The full implementation is in active development.
33
+
34
+ ## What to expect
35
+
36
+ - Codebook-based encode/decode for semantic features
37
+ - Session management with HMAC authentication
38
+ - Support for audio, ECG, IMU, and text domains
39
+ - Embedded C library for microcontrollers (Cortex-M4+)
40
+ - Sub-millisecond encode latency, 2-byte wire payloads
41
+
42
+ ## Install
43
+
44
+ ```bash
45
+ pip install gist-protocol
46
+ ```
47
+
48
+ ## CLI
49
+
50
+ ```bash
51
+ gist # prints project info
52
+ gist --version # prints version
53
+ ```
@@ -0,0 +1,8 @@
1
+ README.md
2
+ gist_protocol_stub.py
3
+ pyproject.toml
4
+ gist_protocol.egg-info/PKG-INFO
5
+ gist_protocol.egg-info/SOURCES.txt
6
+ gist_protocol.egg-info/dependency_links.txt
7
+ gist_protocol.egg-info/entry_points.txt
8
+ gist_protocol.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gist = gist_protocol_stub:main
@@ -0,0 +1 @@
1
+ gist_protocol_stub
@@ -0,0 +1,24 @@
1
+ """gist-protocol — coming soon stub."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+
6
+ def main():
7
+ import sys
8
+
9
+ if "--version" in sys.argv or "-V" in sys.argv:
10
+ print(__version__)
11
+ sys.exit(0)
12
+
13
+ print(f"gist-protocol v{__version__}")
14
+ print()
15
+ print("Semantic transport protocol for bandwidth-constrained channels.")
16
+ print("Transmits compact codebook coordinates instead of raw feature vectors.")
17
+ print()
18
+ print("Coming soon.")
19
+ print()
20
+ print("Learn more: https://github.com/nolanjf/gist-protocol")
21
+
22
+
23
+ if __name__ == "__main__":
24
+ main()
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "gist-protocol"
7
+ version = "0.0.1"
8
+ description = "Semantic transport protocol for bandwidth-constrained channels"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ { name = "Nolan Figueroa" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "Intended Audience :: Science/Research",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Topic :: Scientific/Engineering",
25
+ "Topic :: Communications",
26
+ ]
27
+ keywords = ["gist", "protocol", "semantic", "transport", "codebook", "compression"]
28
+
29
+ [project.scripts]
30
+ gist = "gist_protocol_stub:main"
31
+
32
+ [project.urls]
33
+ Homepage = "https://github.com/nolanjf/gist-protocol"
34
+ Documentation = "https://github.com/nolanjf/gist-protocol"
35
+ Repository = "https://github.com/nolanjf/gist-protocol"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+