mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
The ManifestPython struct doesn't have an entry_point field. Python plugins should specify their script in server.executable.
14 lines
423 B
JSON
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"
|
|
}
|
|
}
|