tot-talk / pyproject.toml
grungecoder's picture
Add Gradio web app + HuggingFace Spaces deployment config
66c65bc
raw
history blame contribute delete
568 Bytes
[project]
name = "cry-eval"
version = "0.1.0"
description = "Real-time multi-model baby cry classification CLI tool"
requires-python = ">=3.11"
dependencies = [
"sounddevice>=0.4.6",
"numpy>=1.24.0",
"librosa>=0.10.0",
"scikit-learn>=1.3.0",
"joblib>=1.3.0",
"torch>=2.1.0",
"torchaudio>=2.1.0",
"transformers>=4.38.0",
"tensorflow>=2.15.0",
"tensorflow-hub>=0.15.0",
"huggingface-hub>=0.20.0",
"rich>=13.7.0",
"click>=8.1.0",
"soundfile>=0.12.0",
"gradio>=4.0.0",
]
[project.scripts]
cry-eval = "main:cli"