-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 1.06 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
[tool.poetry]
name = "JukeBot"
version = "0.1.0"
description = "A music bot for Discord using Disnake"
authors = ["Dysta <xav4098@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.11"
loguru = "^0.7.3"
taskipy = "^1.14.1"
python-dotenv = "^1.2.1"
asyncstdlib = "^3.13.1"
yt-dlp = "^2026.2.21"
shazamio = "^0.8.1"
disnake = {extras = ["speed", "voice"], version = "^2.12.0"}
pyaml = "^26.2.1"
[tool.poetry.extras]
speed = ["uvloop"]
[tool.poetry.group.dev.dependencies]
black = "^26.3.1"
autoflake = "^2.3.1"
isort = "^5.10.1"
[tool.taskipy.tasks]
start = { cmd = "python -m jukebot", help = "run the bot" }
black = { cmd = "python -m black .", help = "blackify the code" }
clean = { cmd = "python -m autoflake . -r -i -v --ignore-init-module-imports --remove-all-unused-imports --remove-unused-variables", help = "remove unused code/import/variable" }
tests = { cmd = "python -m unittest -v", help = "run all the tests" }
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"