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.
- lmms_builder-1.0.0/PKG-INFO +11 -0
- lmms_builder-1.0.0/README.md +35 -0
- lmms_builder-1.0.0/lmms_builder/__init__.py +3 -0
- lmms_builder-1.0.0/lmms_builder/autoset.c +10788 -0
- lmms_builder-1.0.0/lmms_builder/autoset.py +87 -0
- lmms_builder-1.0.0/lmms_builder/bootstrap.c +8901 -0
- lmms_builder-1.0.0/lmms_builder/bootstrap.py +50 -0
- lmms_builder-1.0.0/lmms_builder/cli.c +9417 -0
- lmms_builder-1.0.0/lmms_builder/cli.py +104 -0
- lmms_builder-1.0.0/lmms_builder/hardware.c +9858 -0
- lmms_builder-1.0.0/lmms_builder/hardware.py +88 -0
- lmms_builder-1.0.0/lmms_builder/installer.c +12450 -0
- lmms_builder-1.0.0/lmms_builder/installer.py +137 -0
- lmms_builder-1.0.0/lmms_builder/reporter.c +11332 -0
- lmms_builder-1.0.0/lmms_builder/reporter.py +93 -0
- lmms_builder-1.0.0/lmms_builder.egg-info/PKG-INFO +11 -0
- lmms_builder-1.0.0/lmms_builder.egg-info/SOURCES.txt +23 -0
- lmms_builder-1.0.0/lmms_builder.egg-info/dependency_links.txt +1 -0
- lmms_builder-1.0.0/lmms_builder.egg-info/entry_points.txt +2 -0
- lmms_builder-1.0.0/lmms_builder.egg-info/not-zip-safe +1 -0
- lmms_builder-1.0.0/lmms_builder.egg-info/requires.txt +3 -0
- lmms_builder-1.0.0/lmms_builder.egg-info/top_level.txt +1 -0
- lmms_builder-1.0.0/pyproject.toml +3 -0
- lmms_builder-1.0.0/setup.cfg +4 -0
- lmms_builder-1.0.0/setup.py +20 -0
|
@@ -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.
|