-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1.03 KB
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
[project]
name = "muicebot-plugin-memory"
description = "基于 LUFY 的 Muicebot RAG 记忆插件"
dynamic = ["version"]
readme = "README.md"
dependencies = [
"apscheduler>=3.11.0",
"async_lru>=2.0.5",
"jinja2>=3.1.6",
"httpx>=0.28.1",
"nonebot2>=2.4.1",
"nonebot_plugin_alconna>=0.54.2",
"nonebot_plugin_apscheduler>=0.5.0",
"nonebot_plugin_orm>=0.7.7",
"nonebot_plugin_localstore>=0.7.4",
"numpy>=2.2.6",
"muicebot>=1.1.0",
"openai>=1.85.0",
"sqlalchemy>=2.0.41",
]
authors = [
{ name = "Moemu", email = "i@snowy.moe" },
]
[project.optional-dependencies]
roberta = [
"torch>=2.7.1",
"transformers>=4.52.4",
]
[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.2.0"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"