🐛 add missing dependencies

This commit is contained in:
FuQuan233 2025-04-26 00:18:36 +08:00
parent eb1038e09e
commit ed2f9051ef
2 changed files with 167 additions and 15 deletions

View file

@ -11,13 +11,14 @@ documentation = "https://github.com/FuQuan233/nonebot-plugin-llmchat#readme"
keywords = ["nonebot", "nonebot2", "llm", "ai"]
[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
openai = ">=1.0.0"
nonebot2 = "^2.2.0"
aiofiles = ">=24.0.0"
nonebot-plugin-apscheduler = "^0.5.0"
nonebot-adapter-onebot = "^2.0.0"
nonebot-plugin-localstore = "^0.7.3"
mcp = "^1.6.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
@ -26,7 +27,7 @@ pre-commit = "^4.0.0"
[tool.ruff]
line-length = 130
target-version = "py39"
target-version = "py310"
[tool.ruff.format]
line-ending = "lf"
@ -64,7 +65,7 @@ force-sort-within-sections = true
keep-runtime-typing = true
[tool.pyright]
pythonVersion = "3.9"
pythonVersion = "3.10"
pythonPlatform = "All"
defineConstant = { PYDANTIC_V2 = true }
executionEnvironments = [{ root = "./" }]