-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 741 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 741 Bytes
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
from setuptools import setup, find_packages
setup(
name="voice-processing-service",
version="1.0.0",
description="Backend service for voice file upload, speaker diarization, and voice library management",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"python-multipart>=0.0.6",
"pydantic>=2.5.0",
"librosa>=0.10.1",
"numpy>=1.24.3",
"scipy>=1.11.4",
"torch>=2.1.1",
"torchaudio>=2.1.1",
"pyannote.audio>=3.1.1",
"speechbrain>=0.5.16",
],
extras_require={
"dev": [
"pytest>=7.4.3",
"httpx>=0.25.2",
]
}
)