lmms-builder 1.0.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.
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: lmms-builder
3
+ Version: 1.0.0
4
+ Summary: Bootstrapper for the LMMs OS
5
+ Requires-Python: >=3.9
6
+ Requires-Dist: psutil
7
+ Requires-Dist: rich
8
+ Requires-Dist: requests
9
+ Dynamic: requires-dist
10
+ Dynamic: requires-python
11
+ Dynamic: summary
@@ -0,0 +1,35 @@
1
+ # LMMs Builder
2
+
3
+ The official bootstrapper and hardware profiler for **LMMs Engine (Local Machine Model Studio)**.
4
+
5
+ This utility is designed to be installed globally via pip. It automatically detects your operating system and hardware profile (GPU, CUDA version, RAM, CPU) to fetch the highly-optimized compiled binary of the LMMs Engine directly from GitHub Releases.
6
+
7
+ ## Features
8
+ - **Auto Hardware Profiling**: Detects OS, CPU, RAM, GPU (VRAM), and CUDA versions.
9
+ - **Pre-flight Checks**: Evaluates engine and module compatibility.
10
+ - **Binary Fetching**: Automatically downloads the latest compiled `lmms-engine` binary.
11
+ - **Global Setup**: Installs the downloaded binary into your system `PATH` so you can use `lmms` anywhere.
12
+ - **Obfuscated Codebase**: Built with Cython to protect proprietary engine architecture.
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ pip install lmms-builder
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ To automatically set up the LMMs engine on your system:
23
+
24
+ ```bash
25
+ lmms-builder --autoset
26
+ ```
27
+
28
+ To fetch a specific version:
29
+
30
+ ```bash
31
+ lmms-builder pull v1.0.0
32
+ ```
33
+
34
+ ## License
35
+ Developed by MarkanM. See LICENSE for details.
@@ -0,0 +1,3 @@
1
+ """
2
+ LMMS Builder - Bootstrapper for the LMMs OS
3
+ """