nonebot-plugin-latex 0.0.3.1__tar.gz → 0.0.3.2__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/PKG-INFO +1 -1
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/__init__.py +23 -3
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex.egg-info/PKG-INFO +1 -1
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/pyproject.toml +1 -1
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/LICENSE +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/README.md +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/config.py +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/converter.py +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/data.py +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/main.py +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex.egg-info/SOURCES.txt +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex.egg-info/dependency_links.txt +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex.egg-info/requires.txt +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex.egg-info/top_level.txt +0 -0
- {nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/setup.cfg +0 -0
{nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/__init__.py
RENAMED
@@ -14,12 +14,12 @@ See the Mulan PSL v2 for more details.
|
|
14
14
|
"""
|
15
15
|
|
16
16
|
from nonebot import get_plugin_config, get_driver
|
17
|
-
from nonebot.plugin import PluginMetadata
|
17
|
+
from nonebot.plugin import PluginMetadata
|
18
18
|
|
19
19
|
from .config import Config
|
20
20
|
from .converter import _converter, get_converter
|
21
21
|
|
22
|
-
__version__ = "0.0.3.
|
22
|
+
__version__ = "0.0.3.2"
|
23
23
|
|
24
24
|
__author__ = "Eilles"
|
25
25
|
|
@@ -30,7 +30,27 @@ __plugin_meta__ = PluginMetadata(
|
|
30
30
|
type="library",
|
31
31
|
homepage="https://github.com/EillesWan/nonebot-plugin-latex",
|
32
32
|
config=Config,
|
33
|
-
supported_adapters=
|
33
|
+
supported_adapters={
|
34
|
+
"nonebot.adapters.telegram",
|
35
|
+
"nonebot.adapters.dodo",
|
36
|
+
"nonebot_adapter_tailchat",
|
37
|
+
"nonebot.adapters.onebot.v11",
|
38
|
+
"nonebot.adapters.minecraft",
|
39
|
+
"nonebot.adapters.github",
|
40
|
+
"nonebot.adapters.discord",
|
41
|
+
"nonebot.adapters.mail",
|
42
|
+
"nonebot.adapters.ding",
|
43
|
+
"nonebot.adapters.console",
|
44
|
+
"nonebot.adapters.qq",
|
45
|
+
"nonebot.adapters.kritor",
|
46
|
+
"nonebot.adapters.feishu",
|
47
|
+
"nonebot.adapters.red",
|
48
|
+
"nonebot.adapters.satori",
|
49
|
+
"nonebot.adapters.onebot.v12",
|
50
|
+
"nonebot.adapters.kaiheila",
|
51
|
+
"nonebot.adapters.mirai",
|
52
|
+
"nonebot.adapters.ntchat",
|
53
|
+
}, # inherit_supported_adapters("nonebot_plugin_alconna"),
|
34
54
|
extra={"License": "Mulan PSL v2", "Author": __author__},
|
35
55
|
)
|
36
56
|
|
File without changes
|
File without changes
|
{nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/config.py
RENAMED
File without changes
|
{nonebot_plugin_latex-0.0.3.1 → nonebot_plugin_latex-0.0.3.2}/nonebot_plugin_latex/converter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|