Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
lgc2333 committed Oct 13, 2023
1 parent 6993887 commit f7275f2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 25 deletions.
14 changes: 3 additions & 11 deletions nonebot_plugin_eitherchoice/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from nonebot import require
from nonebot.plugin import PluginMetadata
from nonebot.plugin import PluginMetadata, inherit_supported_adapters

require("nonebot_plugin_htmlrender")
require("nonebot_plugin_saa")

from . import __main__ as __main__ # noqa: E402
from .config import ConfigModel # noqa: E402

__version__ = "0.1.3"
__version__ = "0.2.0"
__plugin_meta__ = PluginMetadata(
name="EitherChoice",
description="让 AI 帮你对比两件事物",
Expand All @@ -21,14 +21,6 @@
type="application",
homepage="https://github.com/lgc-NB2Dev/nonebot-plugin-eitherchoice",
config=ConfigModel,
supported_adapters={
"~onebot.v11",
"~onebot.v12",
"~kaiheila",
"~qqguild",
"~telegram",
"~feishu",
"~red",
},
supported_adapters=inherit_supported_adapters("nonebot_plugin_saa"),
extra={"License": "MIT", "Author": "student_2333"},
)
22 changes: 11 additions & 11 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[project]
name = "nonebot-plugin-eitherchoice"
version = "0.2.0"
version = "0.2.0.post1"
description = "Let AI help you compare two things."
authors = [{ name = "student_2333", email = "[email protected]" }]
dependencies = [
"nonebot2>=2.0.0",
"nonebot2>=2.1.1",
"nonebot-plugin-htmlrender>=0.2.1",
"nonebot-plugin-send-anything-anywhere>=0.3.0",
"nonebot-plugin-send-anything-anywhere>=0.3.2",
"pydantic>=1.10.4",
"httpx[http2]>=0.24.1",
"beautifulsoup4>=4.12.2",
Expand Down

0 comments on commit f7275f2

Please sign in to comment.