forked from Diving-Fish/mai-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
104 lines (96 loc) · 1.94 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
95
96
97
98
99
100
101
102
103
104
[project]
name = "nonebot_plugin_maimai"
version = "0.4.4-post1"
description= "Maimai DX plugin for NoneBot"
authors = [
{ name = "Agnes_Digital", email = "Z735803792@163.com" }
]
dependencies = [
"aiohttp >= 3.8.3",
"nonebot2 >=2.0.0",
"nonebot-adapter-onebot >=2.1.3",
"pillow <10.0.0",
"httpx >=0.22.0",
"nonebot-plugin-txt2img >=0.4.0",
"nonebot-plugin-send-anything-anywhere >=0.3.2",
"bs4 >=0.0.1",
]
homepage = "https://github.com/Agnes4m/maimai_plugin/tree/nonebot2.0.0"
repository = "https://github.com/Agnes4m/maimai_plugin/tree/nonebot2.0.0"
requires-python = ">=3.8,<4.0"
keywords = ["maimai", "nonebot2", "plugin"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
readme = "README.md"
license = { text = "MIT" }
[project.urls]
homepage = "https://github.com/Agnes4m/maimai_plugin/tree/nonebot2.0.0"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 89
target-version = ["py39", "py310", "py311"]
include = '\.pyi?$'
# skip-string-normalization = true
[tool.ruff.isort]
extra-standard-library = ["typing_extensions"]
[tool.ruff]
ignore = [
"B008",
"B905",
"N802",
"N803",
"N806",
"N816",
"E402",
"F403",
"F405",
"E501",
"FBT002",
"PGH003",
"RUF001",
"RUF002",
"RUF003",
"RUF006",
"RUF100",
"SIM117",
"TRY002",
"TRY003",
]
select = [
"A",
"ARG",
"ASYNC",
"B",
"C4",
"COM",
"E",
"F",
"FBT",
"FLY",
"I",
"ISC",
"N",
"PIE",
"PGH",
"PTH",
"PYI",
"Q",
"RET",
"RSE",
"RUF",
"SIM",
"SLF",
"SLOT",
"TRY",
]