-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (75 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (75 loc) · 1.6 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
[project]
dependencies = [
"PyNaCl==1.6.2",
"spotipy==2.25.2",
"requests==2.32.4",
"beautifulsoup4==4.13.4",
"psutil==7.0.0",
"disnake==2.10.1",
"python-dotenv==1.2.1",
"yt-dlp==2025.6.9",
"aiohttp==3.13.3",
"imageio==2.37.0",
"pylrc==0.1.2",
"syncedlyrics==1.0.1",
"colorlog",
"lavalink==5.9.0",
"disnake-ext-paginator @ git+https://github.com/Snipy7374/disnake-ext-paginator.git",
"fastapi==0.115.0",
"uvicorn[standard]==0.32.1",
]
name = "lava-discord-bot"
version = "0.0.1"
[tool.uv]
dev-dependencies = [
"ruff",
]
package = false
[tool.ruff]
# Exclude commonly ignored directories
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
# Set the line length to 88 (same as Black)
indent-width = 4
line-length = 88
# Assume Python 3.8+
target-version = "py38"
[tool.ruff.lint]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default
ignore = []
select = ["E4", "E7", "E9", "F"]
# Allow fix for all enabled rules (when `--fix`) is provided
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
# Use double quotes for strings
quote-style = "double"
# Indent with spaces, rather than tabs
indent-style = "space"
# Respect magic trailing commas
skip-magic-trailing-comma = false
# Automatically detect the appropriate line ending
line-ending = "auto"