-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
48 lines (42 loc) · 991 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "nonebot-plugin-dialectlist"
version = "2.6.1"
description = "看看你群群友有多能说"
authors = [
{name = "Chen_Xu233", email = "[email protected]"},
]
dependencies = [
"nonebot-plugin-chatrecorder>=0.6.0",
"nonebot-plugin-orm[default]",
"nonebot-plugin-apscheduler>=0.4.0",
"nonebot-plugin-alconna>=0.50.2",
"nonebot-plugin-cesaa>=0.4.0",
"nonebot-plugin-userinfo>=0.2.6",
"nonebot-plugin-htmlrender>=0.3.3",
"nonebot2>=2.3.2",
"pillow>=10.4.0",
"nonebot-plugin-uninfo>=0.1.1",
]
requires-python = ">=3.9,<4.0"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"ruff>=0.5.5",
"setuptools>=71.1.0",
"twine>=5.1.0",
"nb-cli>=0.7.6",
"py-spy>=0.3.14",
]
Test = [
"nonebot-adapter-onebot>=2.4.4",
]
[tool.pdm]
distribution = true
[tool.ruff]
line-length = 80
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
[tool.ruff.lint]
ignore = ["E402"]