forked from RF-Tar-Railt/nonebot-plugin-waiter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (52 loc) · 1.24 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
[project]
name = "nonebot-plugin-waiter"
version = "0.7.1"
description = "An alternative for got-and-reject in Nonebot"
authors = [
{name = "RF-Tar-Railt",email = "3165388245@qq.com"},
]
dependencies = [
"nonebot2>=2.3.0",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.build]
includes = ["src"]
[tool.pdm.dev-dependencies]
dev = [
"isort>=5.13.2",
"black>=24.4.2",
"ruff>=0.4.3",
"pre-commit>=3.7.0",
"nonebot-adapter-onebot>=2.4.3",
"nonebot2[fastapi]>=2.3.0",
]
[tool.pdm.scripts]
format = { composite = ["isort ./src/ ","black ./src/ ","ruff check ./src/"] }
[tool.black]
line-length = 110
target-version = ["py39", "py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 110
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = ["typing_extensions"]
[tool.ruff]
line-length = 110
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q"]
ignore = ["C901", "T201", "E731", "E402"]
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"
typeCheckingMode = "basic"