-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
65 lines (62 loc) · 1009 Bytes
/
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
[tool.autopep8]
max_line_length = 120
ignore = "E203,E501,W503"
in-place = true
recursive = true
aggressive = 3
[tool.black]
line-length = 120
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 120
py_version = 311
known_third_party = [
"aiofile",
"aiohttp",
"aiohttp_client_cache",
"aiopath",
"anyio",
"apscheduler",
"apsw",
"asyncpg",
"asyncspotify",
"asyncstdlib",
"brotli",
"cached_property",
"discord",
"deepdiff",
"expiringdict",
"humanize",
"iso8601",
"packaging",
"piccolo",
"platformdirs",
"psutil",
"pytz",
"yaml",
"red_commons",
"redis",
"rich",
"tabulate",
"typing_extensions",
"ujson",
"uvloop"
]
known_first_party = [
"pylav",
]
known_local_folder = [
"audio",
"plconfig",
"pleffects",
"pleq",
"pllocal",
"plmanagednode",
"plmigrator",
"plnodes",
"plnotifier",
"plplaylists",
"plradio",
"plutils"
]