Metadata-Version: 2.4
Name: mesh-plugin-manager
Version: 1.4.0
Summary: 
Author: Ben Allfree
Author-email: ben@meshenvy.org
Requires-Python: >=3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: grpcio-tools (>=1.0.0)
Requires-Dist: nanopb (>=0.4.9)
Requires-Dist: requests (>=2.31.0)
Requires-Dist: resolvelib (>=1.0.0)
Requires-Dist: semver (>=3.0.0)
Description-Content-Type: text/markdown

# Mesh Plugin Manager (MPM)

A lightweight package manager for Meshtastic plugins with dependency resolution, version management, and lockfile support.

## Features

- Install and manage Meshtastic plugins from a remote registry
- Automatic dependency resolution with SemVer support
- Lockfile generation for reproducible builds
- Protobuf file generation for plugins
- PlatformIO build system integration

## Installation

```bash
pip install mesh-plugin-manager
```

## Usage

```bash
# List installed plugins
mpm list

# List all available plugins from registry
mpm list --all

# Install a plugin
mpm install <slug>

# Install all plugins from meshtastic.json
mpm install

# Remove a plugin
mpm remove <slug>

# Generate protobuf files for all plugins
mpm proto
```


