whisper-websocket / setup.py
AnyaSchen's picture
Add application file
72277b5
raw
history blame
542 Bytes
from setuptools import setup, find_packages
setup(
name="whisperlivekit",
version="0.1.0",
packages=find_packages(),
install_requires=[
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"python-multipart>=0.0.5",
"numpy>=1.21.0",
"ffmpeg-python>=0.2.0",
"torch>=2.0.0",
"torchaudio>=2.0.0",
"faster-whisper>=0.9.0",
"websockets>=10.0",
"pydantic>=1.8.0",
"python-dotenv>=0.19.0",
"setuptools>=65.5.1",
],
python_requires=">=3.10",
)