-
Notifications
You must be signed in to change notification settings - Fork 1
/
maubot.yaml
35 lines (27 loc) · 1.16 KB
/
maubot.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Target maubot version
maubot: 0.3.1
# The unique ID for the plugin. Java package naming style. (i.e. use your own domain, not xyz.maubot)
id: me.jasonrobinson.pocket
# A PEP 440 compliant version string.
version: 0.2.5
# The SPDX license identifier for the plugin. https://spdx.org/licenses/
# Optional, assumes all rights reserved if omitted.
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.
# 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.
modules:
- pocket
# 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
main_class: PocketPlugin
# Whether or not instances need a database
database: true
# Extra files that the upcoming build tool should include in the mbp file.
extra_files:
- base-config.yaml
# Make this a web app
webapp: true