-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (48 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "dmkh"
version = "0.1.0"
description = "Telegram YT Music Bot"
authors = ["averagepythonfan <djonvorobei@bk.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.bot.dependencies]
aiogram = "^3.1.1"
redis = "^5.0.1"
aioredis = "^2.0.1"
[tool.poetry.group.dev.dependencies]
ansible = "^8.6.1"
[tool.poetry.group.lab.dependencies]
jupyterlab = "4.0.7"
yt-dlp = "^2023.10.13"
sqlalchemy = "^2.0.23"
psycopg2-binary = "^2.9.9"
pillow = "^10.1.0"
pydub = "^0.25.1"
[tool.poetry.group.back.dependencies]
fastapi = "0.103.1"
uvicorn = "^0.24.0.post1"
sqlalchemy = "^2.0.23"
alembic = "^1.12.1"
asyncpg = "^0.29.0"
yt-dlp = "^2023.10.13"
pydub = "^0.25.1"
aiohttp = "^3.8.6"
pillow = "^10.1.0"
celery = "^5.3.6"
redis = "^5.0.1"
aioredis = "^2.0.1"
[tool.poetry.group.build.dependencies]
ruff = "^0.1.5"
[tool.ruff]
exclude = [
"docker",
".vscode",
".ruff_cache"
]
line-length = 88
[tool.ruff.lint]
ignore = [ "F401", "E402" ]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"