File size: 568 Bytes
ea2601f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66c65bc
ea2601f
 
 
 
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
[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"