forked from Joenothing-lst/word-bank
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
53 lines (41 loc) · 1.15 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
[project]
name = "nonebot-plugin-word-bank2"
authors = [{ name = "kexue", email = "[email protected]" }]
description = "无数据问答插件"
license = "GPL-3.0"
readme = "README.md"
version = "0.2.0"
requires-python = "<4.0,>=3.10"
dependencies = [
"httpx>=0.28.1",
"nonebot-adapter-onebot>=2.4.6",
"nonebot-plugin-alconna>=0.54.1",
"nonebot-plugin-localstore>=0.7.3",
"nonebot2>=2.4.0",
]
[project.urls]
homepage = "https://github.com/kexue-z/nonebot-plugin-word-bank2"
[tool.pdm]
distribution = true
[tool.isort]
profile = "black"
[tool.pdm.version]
source = "scm"
tag_filter = "v*"
tag_regex = '^v(?:\D*)?(?P<version>([1-9][0-9]*!)?(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))*((a|b|c|rc)(0|[1-9][0-9]*))?(\.post(0|[1-9][0-9]*))?(\.dev(0|[1-9][0-9]*))?$)$'
fallback_version = "0.1.0"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[dependency-groups]
dev = ["nb-cli>=1.4.2", "nonebot2[fastapi]>=2.4.0"]
[tool.nonebot]
plugins = ["nonebot_plugin_word_bank2"]
# 测试用
adapters = [
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" },
]
[tool.ruff.lint]
ignore = ["E402"]