mpwrd-config 0.0.2__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.
- mpwrd_config-0.0.2/PKG-INFO +42 -0
- mpwrd_config-0.0.2/README.md +15 -0
- mpwrd_config-0.0.2/mpwrd_config/__init__.py +1 -0
- mpwrd_config-0.0.2/mpwrd_config/cli.py +792 -0
- mpwrd_config-0.0.2/mpwrd_config/core.py +117 -0
- mpwrd_config-0.0.2/mpwrd_config/kernel_modules.py +159 -0
- mpwrd_config-0.0.2/mpwrd_config/meshtastic.py +1427 -0
- mpwrd_config-0.0.2/mpwrd_config/software_manager.py +140 -0
- mpwrd_config-0.0.2/mpwrd_config/software_packages.py +933 -0
- mpwrd_config-0.0.2/mpwrd_config/system.py +534 -0
- mpwrd_config-0.0.2/mpwrd_config/system_utils.py +967 -0
- mpwrd_config-0.0.2/mpwrd_config/time_config.py +29 -0
- mpwrd_config-0.0.2/mpwrd_config/tui_dialog.py +2057 -0
- mpwrd_config-0.0.2/mpwrd_config/tui_entry.py +16 -0
- mpwrd_config-0.0.2/mpwrd_config/watchclock.py +63 -0
- mpwrd_config-0.0.2/mpwrd_config/web.py +1957 -0
- mpwrd_config-0.0.2/mpwrd_config/web_static/style.css +662 -0
- mpwrd_config-0.0.2/mpwrd_config/web_templates/base.html +36 -0
- mpwrd_config-0.0.2/mpwrd_config/web_templates/dashboard.html +2019 -0
- mpwrd_config-0.0.2/mpwrd_config/web_templates/login.html +36 -0
- mpwrd_config-0.0.2/mpwrd_config/web_templates/mPWRD.png +0 -0
- mpwrd_config-0.0.2/mpwrd_config/web_templates/partials/software_packages.html +73 -0
- mpwrd_config-0.0.2/mpwrd_config/wifi_mesh.py +158 -0
- mpwrd_config-0.0.2/pyproject.toml +35 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: mpwrd-config
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: MPWRD configuration tooling (Python-first, KISS)
|
|
5
|
+
Author: Ruledo
|
|
6
|
+
Author-email: ruledo707@gmail.com
|
|
7
|
+
Requires-Python: >=3.10,<3.15
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Requires-Dist: InquirerPy (>=0.3.4)
|
|
14
|
+
Requires-Dist: fastapi (>=0.129.0)
|
|
15
|
+
Requires-Dist: itsdangerous (>=2.1.2)
|
|
16
|
+
Requires-Dist: jinja2 (>=3.1.0)
|
|
17
|
+
Requires-Dist: meshtastic (>=2.7.7,<3.0.0)
|
|
18
|
+
Requires-Dist: protobuf (>=6.0.0)
|
|
19
|
+
Requires-Dist: python-multipart (>=0.0.22)
|
|
20
|
+
Requires-Dist: python-pam (>=2.0.0)
|
|
21
|
+
Requires-Dist: six (>=1.16.0)
|
|
22
|
+
Requires-Dist: tomli (>=2.4.0)
|
|
23
|
+
Requires-Dist: tomli-w (>=1.2.0)
|
|
24
|
+
Requires-Dist: uvicorn (>=0.27.0)
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
|
|
27
|
+
# mpwrd-config
|
|
28
|
+
|
|
29
|
+
## Install (APT)
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
sudo install -m 0755 -d /etc/apt/keyrings
|
|
33
|
+
curl -fsSL https://mpwrd-os.github.io/mpwrd-config/apt/mpwrd-config-archive-keyring.asc \
|
|
34
|
+
| sudo tee /etc/apt/keyrings/mpwrd-config-archive-keyring.asc >/dev/null
|
|
35
|
+
|
|
36
|
+
echo "deb [signed-by=/etc/apt/keyrings/mpwrd-config-archive-keyring.asc] https://mpwrd-os.github.io/mpwrd-config/apt/ ./" \
|
|
37
|
+
| sudo tee /etc/apt/sources.list.d/mpwrd-config.list >/dev/null
|
|
38
|
+
|
|
39
|
+
sudo apt update
|
|
40
|
+
sudo apt install mpwrd-config
|
|
41
|
+
```
|
|
42
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# mpwrd-config
|
|
2
|
+
|
|
3
|
+
## Install (APT)
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
sudo install -m 0755 -d /etc/apt/keyrings
|
|
7
|
+
curl -fsSL https://mpwrd-os.github.io/mpwrd-config/apt/mpwrd-config-archive-keyring.asc \
|
|
8
|
+
| sudo tee /etc/apt/keyrings/mpwrd-config-archive-keyring.asc >/dev/null
|
|
9
|
+
|
|
10
|
+
echo "deb [signed-by=/etc/apt/keyrings/mpwrd-config-archive-keyring.asc] https://mpwrd-os.github.io/mpwrd-config/apt/ ./" \
|
|
11
|
+
| sudo tee /etc/apt/sources.list.d/mpwrd-config.list >/dev/null
|
|
12
|
+
|
|
13
|
+
sudo apt update
|
|
14
|
+
sudo apt install mpwrd-config
|
|
15
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""MPWRD configuration package."""
|