File size: 647 Bytes
437df61
 
 
 
 
 
 
 
 
 
9faedb3
437df61
 
 
9faedb3
 
437df61
9faedb3
 
bacf22b
437df61
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "stt-backend"
version = "2.0.0"
description = "FastAPI backend for STT"
dependencies = [
    "fastapi",
    "uvicorn[standard]",
    "aiosqlite",
    "aiofiles",
    "python-multipart",
    "numpy",
    "websockets",
    "custom_logger @ git+https://github.com/jebin2/custom_logger.git",
    "stt-runner[parakeet] @ git+https://github.com/jebin2/STT.git",
    "faster-whisper",
    "jebin-lib[all] @ git+https://github.com/jebin2/lib.git",
]

[project.scripts]
stt-backend = "app.main:app"

[tool.setuptools.packages.find]
include = ["app*"]