2023-11-02 11:57:54 +08:00
|
|
|
[tool.poetry]
|
|
|
|
authors = ["sansenhoshi <sansenhoshi@outlook.com>"]
|
|
|
|
description = "基于 NoneBot2 的机器人"
|
|
|
|
license = "MIT"
|
|
|
|
name = "hexi"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = ""
|
|
|
|
version = "0.0.1"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
eorzeaenv = "^2.2.8"
|
|
|
|
matplotlib = "^3.7.1"
|
|
|
|
expiringdict = "^1.2.2"
|
|
|
|
|
|
|
|
nonebot2 = { extras = ["httpx", "fastapi", "websockets"], version = "^2.1.0" }
|
|
|
|
nb-cli = "^1.2.3"
|
|
|
|
nonebot-adapter-onebot = "2.2.4"
|
|
|
|
|
|
|
|
nonebot-plugin-datastore = "^1.1.2"
|
|
|
|
nonebot-plugin-wordcloud = "^0.5.2"
|
|
|
|
nonebot-plugin-treehelp = "^0.3.0"
|
|
|
|
nonebot-plugin-user = "^0.0.1"
|
|
|
|
|
|
|
|
nonebot-plugin-apscheduler = "^0.3.0"
|
|
|
|
nonebot-plugin-send-anything-anywhere = "^0.3.1"
|
|
|
|
nonebot-plugin-alconna = "^0.24.0"
|
|
|
|
nonebot-plugin-session = "^0.1.0"
|
|
|
|
nonebot-plugin-userinfo = "^0.1.0"
|
|
|
|
|
|
|
|
nonebot-plugin-sentry = "^0.4.0"
|
|
|
|
nonebot-plugin-memes = "0.4.7"
|
|
|
|
nonebot-bison = "0.8.2"
|
|
|
|
nonebot-plugin-gscode = "0.2.1"
|
|
|
|
nonebot-plugin-status = "0.7.1"
|
|
|
|
nonebot-plugin-bawiki = "0.9.3"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
nonebug = "^0.3.3"
|
|
|
|
pytest-cov = "^4.0.0"
|
|
|
|
pytest-mock = "^3.6.1"
|
|
|
|
pytest-xdist = "^3.0.2"
|
|
|
|
pytest-asyncio = "^0.21.0"
|
|
|
|
respx = "^0.20.1"
|
|
|
|
freezegun = "^1.2.2"
|
|
|
|
nonebug-saa = { git = "https://github.com/MountainDash/nonebug-saa.git" }
|
|
|
|
|
|
|
|
[tool.nonebot]
|
|
|
|
adapters = [
|
|
|
|
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" },
|
|
|
|
{ name = "OneBot V12", module_name = "nonebot.adapters.onebot.v12" },
|
|
|
|
{name = "minecraft", module_name = "nonebot.adapter.minecraft"},
|
|
|
|
]
|
2023-11-06 16:50:27 +08:00
|
|
|
|
2023-11-02 11:57:54 +08:00
|
|
|
plugin_dirs = ["hexi/plugins"]
|
|
|
|
plugins = [
|
|
|
|
"onebot_qqguild_extension",
|
|
|
|
"nonebot_plugin_apscheduler",
|
|
|
|
"nonebot_plugin_saa",
|
|
|
|
"nonebot_plugin_alconna",
|
|
|
|
"nonebot_plugin_datastore",
|
|
|
|
"nonebot_plugin_session",
|
|
|
|
"nonebot_plugin_userinfo",
|
|
|
|
"nonebot_plugin_user",
|
|
|
|
"nonebot_plugin_sentry",
|
|
|
|
"nonebot_plugin_treehelp",
|
|
|
|
"nonebot_plugin_wordcloud",
|
|
|
|
"nonebot_plugin_memes",
|
|
|
|
"nonebot_plugin_status",
|
|
|
|
"nonebot_plugin_bawiki",
|
|
|
|
"nonebot_plugin_admin",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length = 88
|
|
|
|
skip_gitignore = true
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
asyncio_mode = "auto"
|
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
typeCheckingMode = "basic"
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
select = ["E", "W", "F", "UP", "C", "T", "PYI", "Q"]
|
|
|
|
ignore = ["E402", "E501", "E711", "C901", "UP037"]
|
|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|