Spaces:
Sleeping
Sleeping
File size: 669 Bytes
9580089 |
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 |
from setuptools import setup, find_packages
setup(
name="voice_clone_app",
version="0.1.0",
packages=find_packages(),
install_requires=[
"torch>=1.9.0",
"torchaudio>=0.9.0",
"numpy>=1.19.2",
"librosa>=0.8.1",
"tqdm>=4.62.3",
"wandb>=0.12.0",
"scipy>=1.7.1",
"matplotlib>=3.4.3",
"pandas>=1.3.3",
"soundfile>=0.10.3",
"ffmpeg-python>=0.2.0",
"huggingface-hub>=0.19.0",
"requests>=2.31.0",
"transformers>=4.30.0",
"speechbrain>=0.5.15",
"fastapi>=0.104.1",
"python-multipart>=0.0.6",
"uvicorn>=0.24.0"
],
) |