Metadata-Version: 2.4
Name: pluginator
Version: 0.0.0
Summary: Plugin management system
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pyyaml>=6.0
Requires-Dist: qools>=0.0.0
Provides-Extra: test
Requires-Dist: pytest>=8.0; extra == "test"
Requires-Dist: pytest-cov>=5.0; extra == "test"
Requires-Dist: pytest-mock>=3.0; extra == "test"
Requires-Dist: ruff>=0.15.0; extra == "test"
Requires-Dist: pyhamcrest>=2.0; extra == "test"
Provides-Extra: docs
Requires-Dist: mkdocs>=1.5; extra == "docs"
Requires-Dist: mkdocs-material>=9.0; extra == "docs"
Requires-Dist: mkdocstrings[python]>=0.24; extra == "docs"

# pluginator

Plugin management system

## Installation

```bash
pip install pluginator
```

## Quick Start

```python
from pluginator import define

@define.plugin('my-plugin', config='config.yml')
class MyPlugin:
    name = define.option(str, required=True, env_var='PLUGIN_NAME')

    def configure(self):
        print(f'Configured: {self.name}')
```

## Documentation

Full documentation: https://qarium.github.io/pluginator/
