nonebot-plugin-marshoai/pyproject.toml

61 lines
1.4 KiB
TOML
Raw Normal View History

2024-10-01 23:02:08 +08:00
[project]
name = "nonebot-plugin-marshoai"
dynamic = ["version"]
description = "Nonebot2插件调用Azure OpenAI等AI服务实现猫娘聊天"
2024-10-01 23:02:08 +08:00
readme = "README.md"
requires-python = "<4.0,>=3.10"
2024-10-01 23:02:08 +08:00
authors = [{ name = "Asankilp", email = "asankilp@outlook.com" }]
dependencies = [
"nonebot2>=2.2.0",
2024-10-01 23:02:08 +08:00
"nonebot-plugin-alconna>=0.48.0",
"nonebot-plugin-localstore>=0.7.1",
2024-10-01 23:02:08 +08:00
"azure-ai-inference>=1.0.0b4",
"zhDatetime>=1.1.1",
2024-10-01 23:38:59 +08:00
"aiohttp>=3.9",
"httpx>=0.27.0",
"ruamel.yaml>=0.18.6",
"pyyaml>=6.0.2",
"psutil>=6.1.0",
"beautifulsoup4>=4.12.3"
2024-10-01 23:02:08 +08:00
]
2024-12-02 13:23:30 +08:00
license = { text = "MIT, Mulan PSL v2" }
2024-10-01 23:02:08 +08:00
[project.urls]
Homepage = "https://github.com/LiteyukiStudio/nonebot-plugin-marshoai"
[tool.nonebot]
plugins = ["nonebot_plugin_marshoai"]
# 测试用
adapters = [
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" },
]
2024-10-01 23:02:08 +08:00
[tool.pdm]
distribution = true
python.use_venv = true
python.venv_in_project = true
2024-10-01 23:02:08 +08:00
[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]*))?$)$'
2024-10-01 23:02:08 +08:00
[tool.pdm.build]
includes = []
2024-10-01 23:02:08 +08:00
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[dependency-groups]
dev = [
"nb-cli>=1.4.2",
"pytest>=8.3.4",
"pre-commit>=4.0.1",
"nonebot-adapter-onebot>=2.4.6",
"mypy>=1.13.0",
"black>=24.10.0",
]