This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (59 loc) · 1.5 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
[project]
name = "nonebot-plugin-alconna"
version = "0.9.1"
description = "Alconna Adapter for Nonebot"
authors = [
{name = "RF-Tar-Railt", email = "[email protected]"},
]
dependencies = [
"nonebot2>=2.0.0rc4",
"arclet-alconna<2.0.0, >=1.7.11",
"arclet-alconna-tools<0.7.0, >=0.6.3",
"nepattern<0.6.0, >=0.5.10",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
keywords = [
"command",
"argparse",
"cli",
"alconna",
"nonebot",
]
[project.urls]
repository = "https://github.com/ArcletProject/nonebot-plugin-alconna"
[build-system]
requires = ["pdm-pep517>=1.0"]
build-backend = "pdm.pep517.api"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"nonebot2[fastapi,httpx,websockets]>=2.0.0",
"fix-future-annotations>=0.5.0",
"nonebot-adapter-onebot>=2.2.3",
"nonebot-adapter-feishu>=2.0.0b8",
"nonebot-adapter-console>=0.3.2",
"nonebot-adapter-ding>=2.0.0a16",
"nonebot-adapter-mirai2>=0.0.22",
"nonebot-adapter-minecraft>=0.1.1",
"nonebot-adapter-ntchat>=0.3.5",
"nonebot-adapter-qqguild>=0.2.3",
"nonebot-adapter-telegram>=0.1.0b10",
]
[tool.pdm.build]
includes = ["src/nonebot_plugin_alconna"]
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 88
length_sort = false
skip_gitignore = true
force_sort_within_sections = true
src_paths = ["nonebot", "tests"]
extra_standard_library = ["typing_extensions"]