-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
105 lines (96 loc) · 1.96 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
105
[project]
name = "nonebot-plugin-vrchat"
dynamic = ["version"]
description = "使用第三方api实现vrchat相关操作,plugin for nonebot2"
authors = [
{ name = "Agnes_Digital", email = "Z735803792@163.com" },
{ name = "student_2333", email = "lgc2333@126.com" },
]
requires-python = ">=3.8,<4.0"
keywords = ["steam", "game", "vrchat", "nonebot2", "plugin"]
dependencies = [
"nonebot2>=2.0.0",
"nonebot-plugin-send-anything-anywhere>=0.3.2",
"vrchatapi>=1.15.0",
"httpx>=0.25.0",
"pil-utils>=0.1.8",
"async-lru>=2.0.4",
"nonebot-plugin-session>=0.2.0",
"ruamel-yaml>=0.18.5",
]
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/nonebot_plugin_vrchat"
[tool.pdm.build]
includes = []
[tool.pdm.version]
source = "file"
path = "nonebot_plugin_vrchat/__init__.py"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
pythonVersion = "3.8"
[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",
"E402",
"E501",
"FBT001",
"FBT002",
"FBT003",
"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",
]