invincible-jha's picture
Upload 2 files
ca44685 verified
raw
history blame
397 Bytes
from setuptools import setup, find_packages
setup(
name="vocal-biomarker",
version="0.1",
packages=find_packages(),
install_requires=[
"gradio==4.12.0",
"torch==2.1.0",
"transformers==4.36.0",
"librosa==0.10.1",
"numpy==1.24.3",
"plotly==5.18.0",
"scipy==1.11.3",
"soundfile==0.12.1",
"pandas==2.1.1"
]
)