-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (101 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
109 lines (101 loc) · 2.19 KB
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
106
107
108
109
[project]
name = "nonebot-plugin-l4d2-server"
dynamic = ["version"]
description = "L4D2 server related operations plugin for NoneBot2"
authors = [{ name = "Agnes_Digital", email = "Z735803792@163.com" }]
requires-python = ">=3.9,<4.0"
keywords = ["steam", "game", "l4d2", "nonebot2", "plugin"]
dependencies = [
"nonebot2>=2.1.0",
"nonebot2[fastapi]>=2.3.3",
"nonebot-plugin-htmlrender>=0.3.0",
"nonebot-adapter-onebot>=2.4.4",
"nonebot-plugin-alconna>=0.50.0",
"nonebot_plugin_datastore>=1.3.0",
"nonebot-plugin-tortoise-orm>=0.1.4",
"aiohttp>=3.8.4",
"jinja2>=3.0.0",
"srctools>=2.6.0",
"httpx>=0.22.0",
"python-a2s>=1.4.1",
"ujson>=5.10.0",
"rcon>=2.1.0",
"pillow>10.0.0",
"rarfile>=4.2",
"pyunpack>=0.3",
"aiofiles>=24.1.0",
"bs4==0.0.2",
"lxml>=6.0.2",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
readme = "README.md"
license = { text = "GPLv3" }
[project.urls]
homepage = "https://github.com/Agnes4m/nonebot_plugin_l4d2_server"
[tool.pdm.build]
includes = []
[tool.pdm.version]
source = "file"
path = "nonebot_plugin_l4d2_server/l4_help/__init__.py"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dependencies]
nonebot2 = {version = "*", extras = ["fastapi"]}
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
[tool.ruff.lint]
ignore = [
"B008",
"B905",
"E501",
"N999",
"FBT002",
"PGH003",
"RUF001",
"RUF002",
"RUF003",
"RUF006",
"RUF100",
"SIM117",
"TRY002",
"TRY003",
"FBT001",
]
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",
]