styrene 0.6.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.
- styrene-0.6.0/PKG-INFO +66 -0
- styrene-0.6.0/README.md +41 -0
- styrene-0.6.0/pyproject.toml +37 -0
- styrene-0.6.0/setup.cfg +4 -0
- styrene-0.6.0/styrene.egg-info/PKG-INFO +66 -0
- styrene-0.6.0/styrene.egg-info/SOURCES.txt +7 -0
- styrene-0.6.0/styrene.egg-info/dependency_links.txt +1 -0
- styrene-0.6.0/styrene.egg-info/requires.txt +11 -0
- styrene-0.6.0/styrene.egg-info/top_level.txt +1 -0
styrene-0.6.0/PKG-INFO
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: styrene
|
|
3
|
+
Version: 0.6.0
|
|
4
|
+
Summary: Styrene mesh networking suite — daemon, TUI, and tools for Reticulum networks
|
|
5
|
+
Author: Vanderlyn Labs
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/styrene-lab
|
|
8
|
+
Project-URL: Repository, https://github.com/styrene-lab/styrene-pypi
|
|
9
|
+
Keywords: reticulum,mesh,lora,lxmf,fleet
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Topic :: Communications
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: styrened>=0.6.0
|
|
18
|
+
Requires-Dist: styrene-tui>=0.5.0
|
|
19
|
+
Provides-Extra: web
|
|
20
|
+
Requires-Dist: styrened[web]>=0.6.0; extra == "web"
|
|
21
|
+
Provides-Extra: metrics
|
|
22
|
+
Requires-Dist: styrened[metrics]>=0.6.0; extra == "metrics"
|
|
23
|
+
Provides-Extra: yubikey
|
|
24
|
+
Requires-Dist: styrened[yubikey]>=0.6.0; extra == "yubikey"
|
|
25
|
+
|
|
26
|
+
# styrene
|
|
27
|
+
|
|
28
|
+
Meta-package for the Styrene mesh networking suite. Installs the full user-facing stack for [Reticulum](https://reticulum.network/) mesh networks.
|
|
29
|
+
|
|
30
|
+
## Install
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install styrene # full stack: daemon + TUI
|
|
34
|
+
pip install styrene[web] # + FastAPI/Uvicorn HTTP API
|
|
35
|
+
pip install styrene[metrics] # + Prometheus metrics
|
|
36
|
+
pip install styrene[yubikey] # + YubiKey identity support
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## What's Included
|
|
40
|
+
|
|
41
|
+
| Package | PyPI | Description |
|
|
42
|
+
|---------|------|-------------|
|
|
43
|
+
| [styrened](https://github.com/styrene-lab/styrened) | `pip install styrened` | Headless daemon and shared library — RPC server, device discovery, auto-reply |
|
|
44
|
+
| [styrene-tui](https://github.com/styrene-lab/styrene-tui) | `pip install styrene-tui` | Terminal UI client for mesh management (Imperial CRT aesthetic) |
|
|
45
|
+
|
|
46
|
+
## CLI Commands
|
|
47
|
+
|
|
48
|
+
After installing, two commands are available:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
styrened # Start the headless daemon
|
|
52
|
+
styrene # Launch the terminal UI
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Individual Installation
|
|
56
|
+
|
|
57
|
+
Each component can be installed independently:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
pip install styrened # daemon/library only
|
|
61
|
+
pip install styrene-tui # TUI + styrened (as dependency)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## License
|
|
65
|
+
|
|
66
|
+
MIT
|
styrene-0.6.0/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# styrene
|
|
2
|
+
|
|
3
|
+
Meta-package for the Styrene mesh networking suite. Installs the full user-facing stack for [Reticulum](https://reticulum.network/) mesh networks.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install styrene # full stack: daemon + TUI
|
|
9
|
+
pip install styrene[web] # + FastAPI/Uvicorn HTTP API
|
|
10
|
+
pip install styrene[metrics] # + Prometheus metrics
|
|
11
|
+
pip install styrene[yubikey] # + YubiKey identity support
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## What's Included
|
|
15
|
+
|
|
16
|
+
| Package | PyPI | Description |
|
|
17
|
+
|---------|------|-------------|
|
|
18
|
+
| [styrened](https://github.com/styrene-lab/styrened) | `pip install styrened` | Headless daemon and shared library — RPC server, device discovery, auto-reply |
|
|
19
|
+
| [styrene-tui](https://github.com/styrene-lab/styrene-tui) | `pip install styrene-tui` | Terminal UI client for mesh management (Imperial CRT aesthetic) |
|
|
20
|
+
|
|
21
|
+
## CLI Commands
|
|
22
|
+
|
|
23
|
+
After installing, two commands are available:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
styrened # Start the headless daemon
|
|
27
|
+
styrene # Launch the terminal UI
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Individual Installation
|
|
31
|
+
|
|
32
|
+
Each component can be installed independently:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install styrened # daemon/library only
|
|
36
|
+
pip install styrene-tui # TUI + styrened (as dependency)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
MIT
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "styrene"
|
|
7
|
+
version = "0.6.0"
|
|
8
|
+
description = "Styrene mesh networking suite — daemon, TUI, and tools for Reticulum networks"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{name = "Vanderlyn Labs"}]
|
|
13
|
+
keywords = ["reticulum", "mesh", "lora", "lxmf", "fleet"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Programming Language :: Python :: 3.11",
|
|
17
|
+
"Programming Language :: Python :: 3.12",
|
|
18
|
+
"Programming Language :: Python :: 3.13",
|
|
19
|
+
"Topic :: Communications",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
dependencies = [
|
|
23
|
+
"styrened>=0.6.0",
|
|
24
|
+
"styrene-tui>=0.5.0",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[project.optional-dependencies]
|
|
28
|
+
web = ["styrened[web]>=0.6.0"]
|
|
29
|
+
metrics = ["styrened[metrics]>=0.6.0"]
|
|
30
|
+
yubikey = ["styrened[yubikey]>=0.6.0"]
|
|
31
|
+
|
|
32
|
+
[tool.setuptools]
|
|
33
|
+
py-modules = []
|
|
34
|
+
|
|
35
|
+
[project.urls]
|
|
36
|
+
Homepage = "https://github.com/styrene-lab"
|
|
37
|
+
Repository = "https://github.com/styrene-lab/styrene-pypi"
|
styrene-0.6.0/setup.cfg
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: styrene
|
|
3
|
+
Version: 0.6.0
|
|
4
|
+
Summary: Styrene mesh networking suite — daemon, TUI, and tools for Reticulum networks
|
|
5
|
+
Author: Vanderlyn Labs
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/styrene-lab
|
|
8
|
+
Project-URL: Repository, https://github.com/styrene-lab/styrene-pypi
|
|
9
|
+
Keywords: reticulum,mesh,lora,lxmf,fleet
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Topic :: Communications
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
Requires-Dist: styrened>=0.6.0
|
|
18
|
+
Requires-Dist: styrene-tui>=0.5.0
|
|
19
|
+
Provides-Extra: web
|
|
20
|
+
Requires-Dist: styrened[web]>=0.6.0; extra == "web"
|
|
21
|
+
Provides-Extra: metrics
|
|
22
|
+
Requires-Dist: styrened[metrics]>=0.6.0; extra == "metrics"
|
|
23
|
+
Provides-Extra: yubikey
|
|
24
|
+
Requires-Dist: styrened[yubikey]>=0.6.0; extra == "yubikey"
|
|
25
|
+
|
|
26
|
+
# styrene
|
|
27
|
+
|
|
28
|
+
Meta-package for the Styrene mesh networking suite. Installs the full user-facing stack for [Reticulum](https://reticulum.network/) mesh networks.
|
|
29
|
+
|
|
30
|
+
## Install
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install styrene # full stack: daemon + TUI
|
|
34
|
+
pip install styrene[web] # + FastAPI/Uvicorn HTTP API
|
|
35
|
+
pip install styrene[metrics] # + Prometheus metrics
|
|
36
|
+
pip install styrene[yubikey] # + YubiKey identity support
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## What's Included
|
|
40
|
+
|
|
41
|
+
| Package | PyPI | Description |
|
|
42
|
+
|---------|------|-------------|
|
|
43
|
+
| [styrened](https://github.com/styrene-lab/styrened) | `pip install styrened` | Headless daemon and shared library — RPC server, device discovery, auto-reply |
|
|
44
|
+
| [styrene-tui](https://github.com/styrene-lab/styrene-tui) | `pip install styrene-tui` | Terminal UI client for mesh management (Imperial CRT aesthetic) |
|
|
45
|
+
|
|
46
|
+
## CLI Commands
|
|
47
|
+
|
|
48
|
+
After installing, two commands are available:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
styrened # Start the headless daemon
|
|
52
|
+
styrene # Launch the terminal UI
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Individual Installation
|
|
56
|
+
|
|
57
|
+
Each component can be installed independently:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
pip install styrened # daemon/library only
|
|
61
|
+
pip install styrene-tui # TUI + styrened (as dependency)
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## License
|
|
65
|
+
|
|
66
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|