forked from iyume/nonebot-plugin-params
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (60 loc) · 1.51 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
[project]
name = "nonebot-plugin-params"
version = "0.1.1"
description = "提供协议适配时常用的注入函数"
authors = [
{name = "iyume", email = "[email protected]"},
]
license = "MIT"
dependencies = [
"nonebot2>=2.3.0",
"typing-extensions>=4.5.0",
]
requires-python = ">=3.9"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/iyume/nonebot-plugin-params"
repository = "https://github.com/iyume/nonebot-plugin-params"
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"black>=24.4.2",
"isort>=5.13.2",
"ruff>=0.4.4",
"nonebot2[fastapi,uvicorn,httpx,websockets]>=2.3.0",
"nonebot-adapter-onebot>=2.4.3",
"nonebot-adapter-feishu>=2.6.1",
"nonebot-adapter-telegram>=0.1.0b17",
"nonebot-adapter-qq>=1.4.4",
# nonebot-adapter-ding still alpha,
# nonebot-adapter-kaiheila
]
[tool.black]
line-length = 92
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 92
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = ["typing_extensions"]
[tool.ruff]
line-length = 92
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "Q"]
ignore = ["E402", "F403", "F405", "C901", "UP037", "W291"]
[tool.pyright]
pythonPlatform = "All"
pythonVersion = "3.9"
typeCheckingMode = "basic"
reportShadowedImports = false
disableBytesTypePromotions = true
defineConstant = { PYDANTIC_V2 = true }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"