-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpyproject.toml
34 lines (32 loc) · 903 Bytes
/
pyproject.toml
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
[project]
name = "Inkar-Suki"
version = "0.8.7"
description = "A IM chat bot based on OneBot V11."
readme = "README.md"
requires-python = ">=3.10, <4.0"
dependencies = [
"nonebot2[fastapi]>=2.3.3",
"nonebot-plugin-alconna>=0.52.2",
"pillow==10.0.0",
"nonebot-plugin-apscheduler>=0.5.0",
"numpy>=2.0.2",
"playwright>=1.47.0",
"nonebot-adapter-onebot>=2.4.5",
"httpx>=0.27.2",
"pydantic>=2.9.2",
"simpleeval>=0.9.13",
"matplotlib>=3.9.2",
"typing-extensions>=4.12.2",
"nb-cli>=1.4.2",
"nonebot-plugin-handle>=0.4.1",
"beautifulsoup4>=4.12.3",
"nonebot-plugin-liteyukibot>=0.1.9",
]
[tool.nonebot]
adapters = [
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" }
]
plugins = ["nonebot_plugin_alconna", "nonebot_plugin_apscheduler", "nonebot_plugin_handle"]
plugin_dirs = ["src/plugins"]
builtin_plugins = []
[tool.pdm]