Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +32 -6
requirements.txt
CHANGED
@@ -1,6 +1,32 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# minimal requirements
|
2 |
+
gradio>=4.0.0
|
3 |
+
nltk>=3.8.1
|
4 |
+
soundfile>=0.12.1
|
5 |
+
numpy>=1.24.0
|
6 |
+
pandas>=2.0.0
|
7 |
+
|
8 |
+
# Core dependencies
|
9 |
+
gradio>=4.0.0
|
10 |
+
nltk>=3.8.1
|
11 |
+
|
12 |
+
# Audio processing
|
13 |
+
soundfile>=0.12.1
|
14 |
+
librosa>=0.10.1
|
15 |
+
numpy>=1.24.0
|
16 |
+
scipy>=1.10.0
|
17 |
+
|
18 |
+
# Text processing
|
19 |
+
pandas>=2.0.0
|
20 |
+
|
21 |
+
# File handling and utilities
|
22 |
+
python-dotenv>=1.0.0
|
23 |
+
tqdm>=4.65.0
|
24 |
+
|
25 |
+
# Optional but recommended for better audio processing
|
26 |
+
pyaudio>=0.2.13
|
27 |
+
wave>=0.0.2
|
28 |
+
|
29 |
+
# Development dependencies (optional)
|
30 |
+
black>=23.0.0 # for code formatting
|
31 |
+
pylint>=2.17.0 # for code linting
|
32 |
+
pytest>=7.3.1 # for testing
|