sitrep-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.
- sitrep_protocol-0.0.1/PKG-INFO +37 -0
- sitrep_protocol-0.0.1/README.md +14 -0
- sitrep_protocol-0.0.1/pyproject.toml +42 -0
- sitrep_protocol-0.0.1/setup.cfg +4 -0
- sitrep_protocol-0.0.1/src/sitrep_protocol/__init__.py +3 -0
- sitrep_protocol-0.0.1/src/sitrep_protocol.egg-info/PKG-INFO +37 -0
- sitrep_protocol-0.0.1/src/sitrep_protocol.egg-info/SOURCES.txt +7 -0
- sitrep_protocol-0.0.1/src/sitrep_protocol.egg-info/dependency_links.txt +1 -0
- sitrep_protocol-0.0.1/src/sitrep_protocol.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sitrep-protocol
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: SITREP: Semantic transport protocol for bandwidth-constrained channels. Name reservation — full release coming soon.
|
|
5
|
+
Author: Nolan Figueroa
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://sitrep.vet
|
|
8
|
+
Project-URL: Repository, https://github.com/astronolanX/SITREP.VET
|
|
9
|
+
Keywords: semantic communication,codebook,vector quantization,bandwidth constrained,IoT,transport protocol
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering
|
|
20
|
+
Classifier: Topic :: System :: Networking
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# sitrep-protocol
|
|
25
|
+
|
|
26
|
+
Semantic transport protocol for bandwidth-constrained channels.
|
|
27
|
+
|
|
28
|
+
Transmits 16-bit codebook coordinates instead of high-dimensional feature vectors — enabling real-time semantic communication over IoT, satellite, and tactical networks.
|
|
29
|
+
|
|
30
|
+
## Status
|
|
31
|
+
|
|
32
|
+
This is a name reservation. The full package is in active development.
|
|
33
|
+
|
|
34
|
+
## Links
|
|
35
|
+
|
|
36
|
+
- Website: https://sitrep.vet
|
|
37
|
+
- Repository: https://github.com/astronolanX/SITREP.VET
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# sitrep-protocol
|
|
2
|
+
|
|
3
|
+
Semantic transport protocol for bandwidth-constrained channels.
|
|
4
|
+
|
|
5
|
+
Transmits 16-bit codebook coordinates instead of high-dimensional feature vectors — enabling real-time semantic communication over IoT, satellite, and tactical networks.
|
|
6
|
+
|
|
7
|
+
## Status
|
|
8
|
+
|
|
9
|
+
This is a name reservation. The full package is in active development.
|
|
10
|
+
|
|
11
|
+
## Links
|
|
12
|
+
|
|
13
|
+
- Website: https://sitrep.vet
|
|
14
|
+
- Repository: https://github.com/astronolanX/SITREP.VET
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sitrep-protocol"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "SITREP: Semantic transport protocol for bandwidth-constrained channels. Name reservation — full release coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Apache-2.0"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Nolan Figueroa"}
|
|
14
|
+
]
|
|
15
|
+
keywords = [
|
|
16
|
+
"semantic communication",
|
|
17
|
+
"codebook",
|
|
18
|
+
"vector quantization",
|
|
19
|
+
"bandwidth constrained",
|
|
20
|
+
"IoT",
|
|
21
|
+
"transport protocol",
|
|
22
|
+
]
|
|
23
|
+
classifiers = [
|
|
24
|
+
"Development Status :: 1 - Planning",
|
|
25
|
+
"Intended Audience :: Developers",
|
|
26
|
+
"Intended Audience :: Science/Research",
|
|
27
|
+
"License :: OSI Approved :: Apache Software License",
|
|
28
|
+
"Programming Language :: Python :: 3",
|
|
29
|
+
"Programming Language :: Python :: 3.10",
|
|
30
|
+
"Programming Language :: Python :: 3.11",
|
|
31
|
+
"Programming Language :: Python :: 3.12",
|
|
32
|
+
"Programming Language :: Python :: 3.13",
|
|
33
|
+
"Topic :: Scientific/Engineering",
|
|
34
|
+
"Topic :: System :: Networking",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[project.urls]
|
|
38
|
+
Homepage = "https://sitrep.vet"
|
|
39
|
+
Repository = "https://github.com/astronolanX/SITREP.VET"
|
|
40
|
+
|
|
41
|
+
[tool.setuptools.packages.find]
|
|
42
|
+
where = ["src"]
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sitrep-protocol
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: SITREP: Semantic transport protocol for bandwidth-constrained channels. Name reservation — full release coming soon.
|
|
5
|
+
Author: Nolan Figueroa
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://sitrep.vet
|
|
8
|
+
Project-URL: Repository, https://github.com/astronolanX/SITREP.VET
|
|
9
|
+
Keywords: semantic communication,codebook,vector quantization,bandwidth constrained,IoT,transport protocol
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering
|
|
20
|
+
Classifier: Topic :: System :: Networking
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# sitrep-protocol
|
|
25
|
+
|
|
26
|
+
Semantic transport protocol for bandwidth-constrained channels.
|
|
27
|
+
|
|
28
|
+
Transmits 16-bit codebook coordinates instead of high-dimensional feature vectors — enabling real-time semantic communication over IoT, satellite, and tactical networks.
|
|
29
|
+
|
|
30
|
+
## Status
|
|
31
|
+
|
|
32
|
+
This is a name reservation. The full package is in active development.
|
|
33
|
+
|
|
34
|
+
## Links
|
|
35
|
+
|
|
36
|
+
- Website: https://sitrep.vet
|
|
37
|
+
- Repository: https://github.com/astronolanX/SITREP.VET
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sitrep_protocol
|