-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
78 lines (69 loc) · 1.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "raian-bot"
version = "1.1.0"
description = ""
authors = [
{name = "RF-Tar-Railt",email = "[email protected]"},
]
dependencies = [
"arclet-alconna>=1.8.29",
"graia-amnesia[aiohttp,asgi]>=0.9.0",
"avilla-core>=1.0.0a27",
"avilla-qqapi>=1.0.0a31",
"avilla-elizabeth>=1.0.0a30",
"graia-saya>=0.0.20",
"graia-scheduler>=0.3.1",
"pyquery>=2.0.1",
"pydantic>=2.9.1",
"PyYAML>=6.0.2",
"graiax-playwright>=0.4.4",
"graiax-text2img-playwright>=0.5.0",
"diro-py>=0.1.1",
"arknights-toolkit>=0.7.7",
"ujson>=5.10.0",
"sqlalchemy>=2.0.34",
"Jinja2>=3.1.4",
"psutil>=6.0.0",
"humanize>=4.10.0",
"qrcode>=7.4.2",
"tzdata>=2024.1",
"PyJWT>=2.9.0",
"arclet-alconna-avilla>=0.19.1",
"cryptography>=43.0.1",
"avilla-onebot-v11>=1.0.0a28",
"mdit-py-plugins>=0.4.2",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "AGPL-3.0"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool]
[tool.black]
line-length = 120
target-version = ["py39", "py310", "py311"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true
force_sort_within_sections = false
extra_standard_library = ["typing_extensions"]
[tool.ruff]
include = ["app/**.py", "plugins/**.py", "library/**.py", "./main.py"]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F", "UP", "C", "T", "PYI", "PT", "Q", "DTZ"]
ignore = ["C901", "T201", "E731", "E402"]
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"
typeCheckingMode = "basic"
[tool.pdm.scripts]
format = { composite = ["isort ./main.py ./app/ ./plugins/ ./library","black ./main.py ./app/ ./plugins/ ./library","ruff check ./main.py ./app/ ./plugins/ ./library"] }
[dependency-groups]
dev = ["isort>=5.13.2", "black>=24.8.0", "ruff>=0.6.5", "fix-future-annotations>=0.5.0", "psycopg[binary]>=3.2.3"]