-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
94 lines (89 loc) · 1.83 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
[project]
name = "nonebot-plugin-l4d2-server"
version = "1.0.0b1"
description = "L4D2 server related operations plugin for NoneBot2"
authors = [{ name = "Agnes_Digital", email = "[email protected]" }]
requires-python = ">=3.9,<4.0"
keywords = ["steam", "game", "l4d2", "nonebot2", "plugin"]
dependencies = [
"nonebot2>=2.0.0",
"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.3.9",
"httpx>=0.22.0,<0.24.1",
"msgspec>=0.18.0",
"python-a2s>=1.3.0",
"ujson>=5.10.0",
"lxml>=5.2.2",
"rcon>=2.1.0",
"pillow>9",
"beautifulsoup4>=4.12.3",
]
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",
"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 = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.ruff]
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",
]