-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
84 lines (73 loc) · 1.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "skynet"
version = "2025.3.0"
authors = ["Jitsi Team <[email protected]>"]
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.poetry.group.dev.dependencies]
black = "23.12.1"
poetry-githooks = "^3.0.0"
usort = "^1.0.7"
argparse = "^1.4.0"
tqdm = "^4.66.5"
llmcompressor = "^0.3.0"
[tool.poetry.group.test.dependencies]
pytest = "7.4.4"
pytest-asyncio = "0.23.3"
pytest-mock = "3.12.0"
[tool.poetry.group.vllm]
optional = true
[tool.poetry.group.vllm.dependencies]
vllm = "0.7.0"
[tool.poetry.dependencies]
aioboto3 = "13.3.0"
aiofiles = "24.1.0"
aiohttp = "3.11.9"
async-lru = "2.0.4"
av = "^12.3.0"
beautifulsoup4 = "^4.12.3"
ctranslate2 = "4.4.0"
einops = "^0.8.1"
faiss-cpu = "^1.9.0.post1"
fake-useragent = "^2.0.3"
fastapi = "0.115.5"
fastapi-versionizer = "4.0.1"
faster-whisper = "1.1.1"
flashrank = "^0.2.10"
langchain = "0.3.17"
langchain-community = "^0.3.16"
langchain-huggingface = "^0.1.2"
langchain-openai = "0.2.10"
oci = "^2.144.0"
prometheus-client = "0.21.0"
prometheus-fastapi-instrumentator = "7.0.0"
pybase64 = "^1.4.0"
pydantic = "2.10.2"
pyjwt = {version = "2.10.1", extras = ["crypto"]}
pypdf = "^5.2.0"
python = "~3.11"
redis = "5.2.0"
sentence-transformers = "^3.4.1"
silero-vad = "^5.1.2"
torch = "2.5.1"
torchaudio = "2.5.1"
transformers = "^4.48.3"
uuid6 = "2024.07.10"
uvicorn = "0.32.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.black]
line-length = 120
target-version = ['py311']
skip-string-normalization = 1
[tool.usort]
categories = ["future", "standard_library", "numpy", "third_party", "first_party"]
default_category = "third_party"
excludes = [
"skynet/modules/stt/streaming_whisper/models/"
]
[tool.usort.known]
first_party = ["skynet"]
[tool.githooks]
pre-commit = "sh lint.sh && sh sync-requirements.sh"