mattermost/examples/hello_python/plugin.json
Nick Misasi 4d73a9e4cc fix(example): use server.executable instead of python.entry_point
The ManifestPython struct doesn't have an entry_point field.
Python plugins should specify their script in server.executable.
2026-01-19 22:45:44 -05:00

14 lines
423 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": {
"executable": "plugin.py",
"runtime": "python",
"python_version": ">=3.9"
}
}