-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
85 lines (73 loc) · 1.89 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
[project]
name = "nonebot_plugin_picsbank"
version = "0.1.4"
description = ""
authors = [
{name = "rf_tar_railt", email = "[email protected]"},
{name = "Alex Newton", email = "[email protected]"},
]
dependencies = [
"ujson<5.0.0,>=4.0.2",
"nonebot2[aiohttp]>=2.3.0",
"numpy<2.0.0,>=1.21.4",
"Pillow<10.0.0,>=8.2.0",
"opencv-python>=4.5.4",
"nonebot-plugin-localstore>=0.6.0",
"nonebot-plugin-waiter>=0.4.1",
"nonebot-plugin-alconna>=0.45.4",
"nonebot-plugin-userinfo>=0.2.4",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
keywords = ["nonebot", "nonebot2", "picsbank"]
[project.urls]
homepage = "https://github.com/MaxCrazy1101/nonebot_plugin_picsbank"
repository = "https://github.com/MaxCrazy1101/nonebot_plugin_picsbank"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"nonebot-adapter-onebot>=2.4.3",
"nonebot2[fastapi,uvicorn]>=2.3.0",
"black>=24.4.2",
"isort>=5.13.2",
"ruff>=0.4.4",
]
[tool.pdm.build]
includes = ["src"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 120
target-version = ["py39", "py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 120
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = ["typing_extensions"]
[tool.ruff]
line-length = 120
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"
defineConstant = { PYDANTIC_V2 = true }
typeCheckingMode = "basic"
reportShadowedImports = false
disableBytesTypePromotions = true
[tool.nonebot]
adapters = [
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" }
]
plugin_dirs = ["src"]
builtin_plugins = []