-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (73 loc) · 1.99 KB
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
[project]
name = "nonebot-plugin-access-control"
version = "1.2.4"
description = ""
authors = [
{name = "ssttkkl", email = "huang.wen.long@hotmail.com"},
]
dependencies = [
"nonebot2<3.0.0,>=2.3.0",
"nonebot-plugin-access-control-api<2.0.0,>=1.2.1",
"nonebot-plugin-apscheduler>=0.3.0",
"nonebot-plugin-session<1.0.0,>=0.3.0",
"nonebot-plugin-orm<1.0.0,>=0.7.0",
"arclet-alconna<2.0.0,>=1.7.24",
"shortuuid<2.0.0,>=1.0.11",
"pytimeparser<1.0.0,>=0.2.0",
]
requires-python = "<4.0,>=3.9"
readme = "README.MD"
license = {text = "MIT"}
[project.urls]
repository = "https://github.com/bot-ssttkkl/nonebot-plugin-access-control"
[project.entry-points.nb_scripts]
accctrl = "nonebot_plugin_access_control.script:install"
[dependency-groups]
dev = [
"ruff<1.0.0,>=0.0.275",
"isort<6.0.0,>=5.10.1",
"black<24.0.0,>=23.1.0",
"pre-commit<4.0.0,>=3.1.0",
"setuptools<69.0.0,>=68.1.2",
"nb-cli",
"nonebot-plugin-orm[default]",
"nonebot2[fastapi]",
"nonebot-adapter-onebot",
"nonebot-adapter-kaiheila",
"nonebot-adapter-qq",
"nonebot-adapter-telegram",
"nonebot-adapter-console",
"nonebot-adapter-feishu",
"nonebug<1.0.0,>=0.3.5",
"pytest<8.0.0,>=7.4.3",
"pytest-asyncio<1.0.0,>=0.21.1",
"pytest-cov<5.0.0,>=4.1.0",
]
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 88
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = ["typing_extensions"]
[tool.ruff]
select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q"]
ignore = ["C901", "E402", "F403", "T201"]
line-length = 160
target-version = "py39"
[tool.ruff.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.nonebot]
plugins = ["nonebot_plugin_access_control"]
plugin_dirs = []
[tool.pdm]
distribution = false
[tool.pdm.build]
includes = ["src/nonebot_plugin_access_control"]