43 lines
779 B
TOML
43 lines
779 B
TOML
[tool.poetry]
|
|
name = "audio-resive"
|
|
version = "0.9.0"
|
|
description = ""
|
|
authors = ["dmitrium12 <belicdima8@gmail.com>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
loguru = "^0.7.2"
|
|
aiogram = "2.23.1"
|
|
requests = "^2.31.0"
|
|
setuptools-rust = "^1.8.1"
|
|
openai-whisper = "^20231106"
|
|
torch = "2.0.0"
|
|
fastapi = "^0.104.1"
|
|
jwt = "^1.3.1"
|
|
sqlalchemy = "^2.0.23"
|
|
uvicorn = "^0.24.0.post1"
|
|
python-multipart = "^0.0.6"
|
|
ruff = "^0.4.10"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
".git",
|
|
".ruff_cache",
|
|
".venv",
|
|
"venv",
|
|
"mongodb",
|
|
"data",
|
|
]
|
|
line-length = 92
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "UP", "I"]
|
|
|
|
[tool.ruff.format]
|
|
skip-magic-trailing-comma = true |