mattermost/examples/hello_python/plugin.json
Nick Misasi 174e967a12 feat(10-01): create example plugin manifest with Python runtime fields
Add plugin.json for hello_python example plugin demonstrating:
- server.runtime: "python" field for Python plugin detection
- server.python_version: ">=3.9" minimum requirement
- server.python.entry_point: "plugin.py" entry point

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 15:27:06 -05:00

16 lines
448 B
JSON

{
"id": "com.mattermost.hello-python",
"name": "Hello Python",
"description": "Example Python plugin demonstrating the SDK",
"homepage_url": "https://github.com/mattermost/mattermost",
"support_url": "https://github.com/mattermost/mattermost/issues",
"version": "0.1.0",
"min_server_version": "10.0.0",
"server": {
"runtime": "python",
"python_version": ">=3.9",
"python": {
"entry_point": "plugin.py"
}
}
}