-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
94 lines (87 loc) · 2.55 KB
/
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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[tool.poetry]
name = "mybot"
version = "0.1.0"
description = "mybot"
authors = ["meetwq <meetwq@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
bilireq = { version = "^0.2.6", extras = ["qrcode"] }
cachetools = "^5.0.0"
dateparser = "^1.1.8"
httpx = ">=0.20.0"
Jinja2 = "^3.0.0"
lxml = "^5.0.0"
mcstatus = "^11.0.0"
Pillow = "^10.0.0"
wolframalpha = "^5.0.0"
nonebot2 = { version = "^2.3.0", extras = ["fastapi"] }
nonebot-adapter-onebot = "^2.4.0"
nonebot-plugin-alias = "^0.4.0"
nonebot-plugin-apscheduler = "^0.5.0"
nonebot-plugin-boardgame = "^0.4.0"
nonebot-plugin-bracket = "^0.2.0"
nonebot-plugin-cchess = "^0.4.0"
nonebot-plugin-chatrecorder = "^0.7.0"
nonebot-plugin-chess = "^0.5.0"
nonebot-plugin-ddcheck = "^0.4.0"
nonebot-plugin-emojimix = "^0.4.0"
nonebot-plugin-handle = "^0.4.1"
nonebot-plugin-heweather = "^0.8.1"
nonebot-plugin-htmlrender = "^0.4.0"
nonebot-plugin-imagetools = "^0.5.0"
nonebot-plugin-memes = "^0.7.0"
nonebot-plugin-minesweeper = "^0.4.0"
nonebot-plugin-mystool = "^2.7.0"
nonebot-plugin-oddtext = "^0.2.0"
nonebot-plugin-orm = { version = ">=0.7.0,<1.0.0", extras = ["default"] }
nonebot-plugin-remake = "^0.4.0"
nonebot-plugin-send-anything-anywhere = "^0.6.0"
nonebot-plugin-sentry = "^1.1.0"
nonebot-plugin-shindan = "^0.6.0"
nonebot-plugin-withdraw = "^0.4.0"
# nonebot-plugin-wordcloud = "^0.7.0"
nonebot-plugin-wordle = "^0.4.0"
[tool.poetry.group.dev.dependencies]
[tool.nonebot]
plugins = [
"nonebot_plugin_alias",
"nonebot_plugin_boardgame",
"nonebot_plugin_bracket",
"nonebot_plugin_cchess",
"nonebot_plugin_chatrecorder",
"nonebot_plugin_chess",
"nonebot_plugin_ddcheck",
"nonebot_plugin_emojimix",
"nonebot_plugin_handle",
"nonebot_plugin_heweather",
"nonebot_plugin_imagetools",
"nonebot_plugin_memes",
"nonebot_plugin_minesweeper",
"nonebot_plugin_mystool",
"nonebot_plugin_oddtext",
"nonebot_plugin_remake",
"nonebot_plugin_sentry",
"nonebot_plugin_shindan",
"nonebot_plugin_withdraw",
# "nonebot_plugin_wordcloud",
"nonebot_plugin_wordle",
]
plugin_dirs = ["src/plugins"]
adapters = [
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" },
]
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "PYI", "Q"]
ignore = ["E402", "E501", "E711", "C901", "UP037"]
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"
typeCheckingMode = "basic"
defineConstant = { PYDANTIC_V2 = false }
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"