forked from Moemu/MuiceBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.67 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "nonebot-plugin-muicebot"
version = "0.1.0"
description = "一个可以用来调用多种模型,且被用来练手的Nonebot项目"
readme = "README.md"
requires-python = ">=3.10, <=3.12"
dependencies = [
"APScheduler>=3.11.0",
"azure-ai-inference>=1.0.0b7",
"dashscope>=1.22.1",
"nonebot2>=2.4.1",
"nonebot-adapter-console>=0.6.0",
"nonebot-adapter-onebot>=2.4.6",
"nonebot-adapter-qq>=1.6.2",
"nonebot-adapter-telegram>=0.1.0b20",
"nonebot_plugin_alconna>=0.54.2",
"nonebot_plugin_apscheduler>=0.5.0",
"nonebot_plugin_localstore>=0.7.3",
"nonebot_plugin_orm>=0.7.6",
"ollama>=0.4.7",
"openai>=1.64.0",
"pydantic>=2.10.5",
"httpx>=0.27.0",
"ruamel.yaml>=0.18.10",
"SQLAlchemy>=2.0.38",
"websocket_client>=1.8.0"
]
authors = [
{ name = "Moemu", email = "i@snowy.moe" },
]
[project.optional-dependencies]
dev = [
"pre-commit>=4.1.0",
"nonebot-adapter-onebot>=2.4.6",
"mypy>=1.15.0",
"black>=25.1.0",
"types-requests",
"types-PyYAML"
]
test = [
"nonebug>=0.4.3",
]
[tool.nonebot]
adapters = [
{ name = "OneBot V12", module_name = "nonebot.adapters.onebot.v12" },
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" },
{ name = "Telegram", module_name = "nonebot.adapters.telegram" },
{ name = "QQ", module_name = "nonebot.adapters.qq" },
]
plugins = ["nonebot_plugin_alconna", "nonebot_plugin_localstore", "nonebot_plugin_apscheduler"]
builtin_plugins = []
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"