-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (40 loc) · 1.08 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
[project]
name = "nonebot-plugin-params"
version = "0.1.1"
description = "提供协议适配时常用的注入函数"
authors = [
{name = "iyume", email = "[email protected]"},
]
license-expression = "MIT"
dependencies = [
"nonebot2>=2.0.0b1",
"typing-extensions<5.0.0,>=3.10.0",
]
requires-python = ">=3.7.3"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/iyume/nonebot-plugin-params"
repository = "https://github.com/iyume/nonebot-plugin-params"
[project.optional-dependencies]
[tool]
[tool.pdm]
editable-backend = "editables"
[tool.pdm.dev-dependencies]
dev = [
"black>=22.0.0"
]
all = [
"nonebot-adapter-onebot>=2.0.0b1",
# nonebot-adapter-ding still alpha,
"nonebot-adapter-feishu>=2.0.0b1",
# "nonebot-adapter-telegram @ git+https://github.com/nonebot/adapter-telegram.git",
"nonebot-adapter-qqguild @ git+https://github.com/nonebot/adapter-qqguild.git",
# nonebot-adapter-kaiheila
]
[tool.black]
line-length = 92
[tool.isort]
profile = "black"
[build-system]
requires = ["pdm-pep517>=0.12.0"]
build-backend = "pdm.pep517.api"