forked from NingmengLemon/MiraiChan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.15 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
[project]
name = "MiraiChan"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{ name = "NingmengLemon", email = "60469383+NingmengLemon@users.noreply.github.com" },
]
dependencies = [
"melobot[onebot]==3.2.0",
"pypinyin>=0.53.0",
"aiofiles>=24.1.0",
"aiohttp>=3.10.10",
"pillow>=11.0.0",
"qrcode>=8.0",
"uvloop>=0.21.0; sys_platform != 'win32'",
"pilmoji @ git+https://github.com/jay3332/pilmoji.git@2.0",
"sqlmodel>=0.0.22",
"graphviz>=0.20.3",
"lxml>=5.3.0",
"pydantic>=2.10.3",
"romajitable>=0.0.1",
"aiosqlite>=0.21.0",
"apscheduler>=3.11.0",
"PyYAML>=6.0.2",
]
requires-python = "==3.12.*"
readme = "README.md"
license = { text = "AGPL3" }
[tool.pdm.scripts]
deploy = { cmd = ["python", "-m", "melobot", "run", "src/bot.py"] }
dev = { cmd = ["src/bot.py", "--debug"] }
melobot = { cmd = ["python", "-m", "melobot"] }
pinit = { cmd = ["melobot", "pinit"] }
[tool.pdm]
distribution = false
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"watchfiles>=0.24.0",
"types-qrcode>=8.0.0.20241004",
"types-lxml>=2024.11.8",
"types-aiofiles>=24.1.0.20240626",
]