-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.05 KB
/
pyproject.toml
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
[tool.poetry]
name = "owl"
version = "0.1.0"
description = ""
authors = ["Bart Trzynadlowski <[email protected]>", "Ethan Sutin <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pydub = "^0.25.1"
speechbrain = "^0.5.16"
pandas = "^2.1.4"
transformers = "^4.36.2"
nltk = "^3.8.1"
huggingface-hub = ">=0.13"
tokenizers = ">=0.13,<0.16"
onnxruntime = ">=1.14,<2"
torch = ">=2"
torchaudio = ">=2"
pyannote-audio = "3.1.1"
pydantic = "^2.5.3"
click = "^8.1.7"
torchvision = "^0.16.2"
litellm = "^1.17.4"
fastapi = "^0.109.0"
uvicorn = "^0.25.0"
asyncio = "^3.4.3"
python-socketio = "^5.11.0"
pydantic-yaml = "^1.2.0"
sqlmodel = "^0.0.14"
deepgram-sdk = "^3.1.0"
python-multipart = "^0.0.6"
webrtcvad = "^2.0.10"
pyaudio = "^0.2.14"
halo = "^0.0.31"
alembic = "^1.13.1"
faster-whisper = "^1.0.0"
whisperx = {git = "https://github.com/m-bain/whisperx.git"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
[tool.poetry.scripts]
owl = "owl.core.cli:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"