voice-clone-app / setup.py
hengjie yang
Initial commit: Voice Clone App with Gradio interface
9580089
raw
history blame contribute delete
669 Bytes
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"
],
)