Spaces:
Paused
Paused
File size: 542 Bytes
72277b5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
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",
) |