-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
64 lines (59 loc) · 1.36 KB
/
pyproject.toml
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
[project]
name = "Eric"
version = "0.1.10"
description = ""
authors = [
{ name = "nullqwertyuiop", email = "[email protected]" },
]
dependencies = [
"graia-ariadne>=0.11.7",
"graia-saya>=0.0.18",
"graia-scheduler>=0.2.0",
"graiax-playwright>=0.2.7",
"typing-extensions>=4.7.1",
"sqlalchemy>=2.0.20",
"aiomysql>=0.2.0",
"aiosqlite>=0.19.0",
"aiohttp>=3.8.5",
"kayaku>=0.5.2",
"fastapi>=0.101.1",
"uvicorn>=0.23.2",
"Pillow>=10.0.0",
"numpy>=1.25.2",
"graiax-fastapi>=0.3.1",
"GitPython>=3.1.32",
"psutil>=5.9.5",
"aiofiles>=23.2.1",
"prompt-toolkit>=3.0.39",
"lxml>=4.9.3",
"graiax-text2img-playwright>=0.4.2",
"graiax-shortcut>=0.3.0",
"websockets>=11.0.3",
"packaging>=23.1",
"textual>=0.33.0",
"arclet-alconna-graia>=0.15.0",
"arclet-alconna-ariadne>=0.15.0",
"rich>=13.5.2",
]
requires-python = ">=3.10,<4.0"
license = { text = "AGPL-3.0 license" }
[project.optional-dependencies]
dev = [
"black>=23.7.0",
"pre-commit>=3.3.3",
"textual>=0.33.0",
]
docs = [
"mkdocs-material>=9.1.21",
"mkdocs-git-revision-date-localized-plugin>=1.2.0",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool.isort]
profile = "black"
[tool.pdm.scripts]
start = "python main.py"
docs = "mkdocs serve"