-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (100 loc) · 2.36 KB
/
pyproject.toml
File metadata and controls
110 lines (100 loc) · 2.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "nonebot_plugin_zikequote3"
version = "0.5.0"
description = "LLM 介入,功能丰富的群聊语录自动收集与管理插件,支持自动收集、后台管理、生成排行榜、展示等功能"
authors = [
{ name = "LifeCheckpoint" },
]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "MIT" }
dependencies = [
"jinja2>=3.1.6",
"markdown>=3.9",
"nonebot-adapter-onebot>=2.0.0",
"nonebot-plugin-access-control-api>=1.2.1",
"nonebot-plugin-localstore>=0.7.0",
"nonebot2>=2.0.0",
"openai>=1.76.0",
"pillow>=11.3.0",
"pydantic-ai>=1.40.0",
"pydantic>=2.0.0",
"pymdown-extensions>=10.16.1",
"requests>=2.26.0",
"sentry-sdk>=2.39.0",
"tomlkit>=0.13.3",
"typer>=0.19.2",
"nonebot-plugin-alconna>=0.59.4",
"python-dateutil>=2.9.0.post0",
"nonebot-plugin-htmlrender>=0.6.7",
"aiohttp>=3.13.1",
"nonebot-plugin-waiter>=0.8.1",
"sqlalchemy[asyncio]>=2.0.0",
"aiosqlite>=0.20.0",
"dishka>=1.0.0",
"alembic>=1.15.0",
"lancedb>=0.29.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=1.0.0",
"nonebug>=0.4.3",
]
[project.urls]
Homepage = "https://github.com/LifeCheckpoint/nonebot_plugin_zikequote3"
[tool.nonebot]
plugins = ["nonebot_plugin_zikequote3"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
testpaths = ["tests"]
addopts = "--cov=nonebot_plugin_zikequote3 --cov-report=term-missing --cov-report=html"
filterwarnings = [
"ignore:Failed to get nonebot adapters.*:RuntimeWarning",
"ignore:No adapters found.*:RuntimeWarning",
]
[tool.coverage.run]
source = ["nonebot_plugin_zikequote3"]
omit = [
"*/tests/*",
"*/__pycache__/*",
]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"if __name__ == .__main__.",
"@abstractmethod",
]
[tool.hatch.build]
include = [
"nonebot_plugin_zikequote3/**",
"pyproject.toml",
"README.md",
"LICENSE",
]
exclude = [
"/.github/**",
"/.pytest_cache/**",
"/.venv/**",
"/.vscode/**",
"/.VSCodeCounter/**",
"/dist/**",
"/docs/**",
"**/*.pyc",
"**/apikey",
"**/api_key",
"**/dsn",
"**/sentry_dsn",
]
[tool.hatch.build.targets.wheel]
packages = ["nonebot_plugin_zikequote3"]
[dependency-groups]
dev = [
"pytest-cov>=7.0.0",
]