2018-10-17 08:00:51 -04:00
|
|
|
# This is an example maubot plugin definition file.
|
2018-12-09 08:17:21 -05:00
|
|
|
# All plugins must include a file like this named "maubot.yaml" in their root directory.
|
|
|
|
|
2018-12-15 17:52:54 -05:00
|
|
|
# Target maubot version
|
|
|
|
maubot: 0.1.0
|
|
|
|
|
2018-12-09 08:17:21 -05:00
|
|
|
# The unique ID for the plugin. Java package naming style. (i.e. use your own domain, not xyz.maubot)
|
|
|
|
id: xyz.maubot.example
|
|
|
|
|
2018-10-17 08:00:51 -04:00
|
|
|
# A PEP 440 compliant version string.
|
2018-12-09 08:17:21 -05:00
|
|
|
version: 1.0.0
|
|
|
|
|
2018-12-08 16:45:10 -05:00
|
|
|
# The SPDX license identifier for the plugin. https://spdx.org/licenses/
|
|
|
|
# Optional, assumes all rights reserved if omitted.
|
2018-12-09 08:17:21 -05:00
|
|
|
license: MIT
|
|
|
|
|
|
|
|
# The list of modules to load from the plugin archive.
|
|
|
|
# Modules can be directories with an __init__.py file or simply python files.
|
2018-10-17 08:00:51 -04:00
|
|
|
# Submodules that are imported by modules listed here don't need to be listed separately.
|
|
|
|
# However, top-level modules must always be listed even if they're imported by other modules.
|
2018-12-09 08:17:21 -05:00
|
|
|
modules:
|
|
|
|
- helloworld
|
|
|
|
|
2018-10-17 08:00:51 -04:00
|
|
|
# The main class of the plugin. Format: module/Class
|
|
|
|
# If `module` is omitted, will default to last module specified in the module list.
|
|
|
|
# Even if `module` is not omitted here, it must be included in the modules list.
|
|
|
|
# The main class must extend maubot.Plugin
|
2018-12-09 08:17:21 -05:00
|
|
|
main_class: HelloWorldBot
|
|
|
|
|
2018-12-15 17:52:54 -05:00
|
|
|
# Whether or not instances need a database
|
|
|
|
database: false
|
|
|
|
|
2018-12-09 08:17:21 -05:00
|
|
|
# Extra files that the upcoming build tool should include in the mbp file.
|
|
|
|
#extra_files:
|
|
|
|
#- base-config.yaml
|
|
|
|
#- LICENSE
|
|
|
|
|
|
|
|
# List of dependencies
|
|
|
|
#dependencies:
|
|
|
|
#- foo
|
|
|
|
|
|
|
|
#soft_dependencies:
|
|
|
|
#- bar>=0.1
|