feature: create multitasking

This commit is contained in:
Daniil
2026-02-04 02:19:50 +03:00
parent 67e0f22b4f
commit a25bf623ea
24 changed files with 5227 additions and 21 deletions
+16 -2
View File
@@ -22,14 +22,28 @@ dependencies = [
"pydub>=0.25.1",
"google-cloud-speech>=2.34.0",
"openai-whisper>=20250625",
"dramatiq[redis]>=1.17.0",
"redis>=5.0.0",
"psycopg2-binary>=2.9.9",
]
[dependency-groups]
dev = [
"mypy>=1.19.1",
"ruff>=0.6.0",
"mypy>=1.19.1",
"ruff>=0.6.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"aiosqlite>=0.20.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.ruff]
line-length = 100