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.
@@ -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."""