2024-06-16 22:43:27 +08:00
|
|
|
[project]
|
2024-07-09 19:56:02 +08:00
|
|
|
name = "nonebot-plugin-dialectlist"
|
2024-09-23 21:37:20 +08:00
|
|
|
version = "2.3.1"
|
2024-07-08 13:42:58 +08:00
|
|
|
description = "看看你群群友有多能说"
|
2024-06-16 22:43:27 +08:00
|
|
|
authors = [
|
|
|
|
{name = "Chen_Xu233", email = "woyerpa@outlook.com"},
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"nonebot-plugin-chatrecorder>=0.6.0",
|
|
|
|
"requests>=2.32.3",
|
2024-08-18 22:46:53 +08:00
|
|
|
"nonebot-plugin-orm[default]",
|
2024-06-18 16:32:17 +08:00
|
|
|
"nonebot-plugin-apscheduler>=0.4.0",
|
2024-07-27 23:04:18 +08:00
|
|
|
"nonebot-plugin-alconna>=0.50.2",
|
2024-06-18 16:32:17 +08:00
|
|
|
"nonebot-plugin-cesaa>=0.4.0",
|
2024-09-28 09:49:59 +08:00
|
|
|
"nonebot-plugin-userinfo>=0.2.6",
|
2024-07-27 23:04:18 +08:00
|
|
|
"nonebot-plugin-htmlrender>=0.3.3",
|
|
|
|
"nonebot2>=2.3.2",
|
2024-09-18 22:32:10 +08:00
|
|
|
"pillow>=10.4.0",
|
2024-09-21 18:51:16 +08:00
|
|
|
"nonebot-plugin-uninfo>=0.1.1",
|
2024-06-16 22:43:27 +08:00
|
|
|
]
|
2024-07-10 23:42:58 +08:00
|
|
|
requires-python = ">=3.9,<4.0"
|
2024-06-16 22:43:27 +08:00
|
|
|
readme = "README.md"
|
|
|
|
license = {text = "MIT"}
|
|
|
|
|
|
|
|
|
2024-06-18 16:32:17 +08:00
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
2024-07-27 23:04:18 +08:00
|
|
|
"ruff>=0.5.5",
|
|
|
|
"setuptools>=71.1.0",
|
2024-06-19 12:55:42 +08:00
|
|
|
"twine>=5.1.0",
|
2024-09-21 18:45:01 +08:00
|
|
|
"nb-cli>=0.7.6",
|
|
|
|
"py-spy>=0.3.14",
|
2024-06-18 16:32:17 +08:00
|
|
|
]
|
2024-07-10 23:42:58 +08:00
|
|
|
Test = [
|
|
|
|
"nonebot-adapter-onebot>=2.4.4",
|
|
|
|
]
|
2024-06-18 16:32:17 +08:00
|
|
|
|
2024-06-16 22:43:27 +08:00
|
|
|
[tool.pdm]
|
2024-06-18 16:52:25 +08:00
|
|
|
distribution = true
|
2024-06-18 16:32:17 +08:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
line-length = 80
|
2024-09-21 20:22:25 +08:00
|
|
|
|
2024-06-18 16:32:17 +08:00
|
|
|
[tool.ruff.format]
|
|
|
|
quote-style = "single"
|
|
|
|
indent-style = "tab"
|
2024-06-22 00:10:19 +08:00
|
|
|
|
2024-09-21 20:18:40 +08:00
|
|
|
[tool.ruff.lint]
|
|
|
|
ignore = ["E402"]
|