-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (64 loc) · 1.82 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
[project]
name = "JYstore-Tultle"
version = "1.0.1"
description = "Just a tultle"
readme = "README.md"
requires-python = ">=3.9, <4.0"
[tool.nonebot]
adapters = [
{name = "QQ", module_name = "nonebot.adapters.qq"},
{name = "开黑啦", module_name = "nonebot.adapters.kaiheila"},
{name = "Discod", module_name = "nonebot.adapters.discord"}
]
plugins = ["nonebot_plugin_status", "nonebot_plugin_apscheduler", "nonebot_plugin_localstore"]
plugin_dirs = ["src/plugins"]
builtin_plugins = ["echo"]
[tool.poetry]
name = "jystore-tultle"
version = "1.0.1"
description = "Just a tultle"
authors = ["Autuamn <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
nonebot2 = {extras = ["aiohttp"], version = "^2.2.1"}
nonebot-adapter-kaiheila = "^0.3.3"
nonebot-adapter-qq = "^1.4.2"
nonebot-plugin-status = "^0.8.1"
filetype = "^1.2.0"
pytz = "^2024.1"
nonebot-adapter-discord = "^0.1.7"
nonebot-plugin-apscheduler = "^0.4.0"
nonebot-plugin-localstore = "^0.6.0"
pillow = "^10.3.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.4"
pre-commit = "^3.6.2"
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP", "C", "T", "PYI", "PT"]
ignore = ["E402", "F403", "F405", "C901", "PYI021", "PYI048", "W191", "E501"]
ignore-init-module-imports = true
[tool.ruff.lint.isort]
force-sort-within-sections = true
extra-standard-library = ["typing_extensions"]
combine-as-imports = true
order-by-type = true
relative-imports-order = "closest-to-furthest"
section-order = [
"future",
"standard-library",
"first-party",
"third-party",
"local-folder",
]
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311"]
include = '\.pyi?$'
extend-exclude = ''''''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"