Update requirements.txt
Browse files- requirements.txt +58 -37
requirements.txt
CHANGED
@@ -1,37 +1,58 @@
|
|
1 |
-
# Web Framework
|
2 |
-
Flask==2.3.3
|
3 |
-
Flask-SocketIO==5.3.6
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
websockets==11.0.3
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
#
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Web Framework
|
2 |
+
Flask==2.3.3
|
3 |
+
Flask-SocketIO==5.3.6
|
4 |
+
Flask-Cors==4.0.0
|
5 |
+
eventlet==0.33.3
|
6 |
+
|
7 |
+
# WebSocket and Real-time Communication
|
8 |
+
python-socketio==5.8.0
|
9 |
+
python-engineio==4.5.1
|
10 |
+
websockets==11.0.3
|
11 |
+
|
12 |
+
# API and Network Requests
|
13 |
+
requests==2.31.0
|
14 |
+
urllib3==2.0.4
|
15 |
+
certifi==2023.7.22
|
16 |
+
|
17 |
+
# Audio Processing
|
18 |
+
pydub==0.25.1
|
19 |
+
soundfile==0.12.1
|
20 |
+
numpy==1.24.3
|
21 |
+
|
22 |
+
# Environment and Configuration
|
23 |
+
python-dotenv==1.0.0
|
24 |
+
gunicorn==21.2.0
|
25 |
+
|
26 |
+
# Security and Authentication
|
27 |
+
PyJWT==2.8.0
|
28 |
+
cryptography==41.0.3
|
29 |
+
|
30 |
+
# Error Handling and Logging
|
31 |
+
python-json-logger==2.0.7
|
32 |
+
structlog==23.1.0
|
33 |
+
|
34 |
+
# File Handling and Utilities
|
35 |
+
Werkzeug==2.3.7
|
36 |
+
python-magic==0.4.27
|
37 |
+
filetype==1.2.0
|
38 |
+
|
39 |
+
# Hugging Face Spaces Specific
|
40 |
+
huggingface-hub==0.16.4
|
41 |
+
gradio==3.50.2
|
42 |
+
|
43 |
+
# Development Tools (Optional)
|
44 |
+
black==23.9.1
|
45 |
+
flake8==6.1.0
|
46 |
+
isort==5.12.0
|
47 |
+
|
48 |
+
# Time Zone Support
|
49 |
+
pytz==2023.3
|
50 |
+
tzlocal==5.0.1
|
51 |
+
|
52 |
+
# Async Utilities
|
53 |
+
asyncio==3.4.3
|
54 |
+
aiohttp==3.8.5
|
55 |
+
|
56 |
+
# Data Processing
|
57 |
+
pandas==2.1.1
|
58 |
+
numpy==1.24.3
|