dcrey7 commited on
Commit
3eabbf0
·
verified ·
1 Parent(s): 95109ca

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +58 -37
requirements.txt CHANGED
@@ -1,37 +1,58 @@
1
- # Web Framework and Server
2
- Flask==2.3.3
3
- Flask-SocketIO==5.3.6
4
- python-dotenv==1.0.0
5
- gunicorn==21.2.0
6
- eventlet==0.33.3
7
- Werkzeug==2.3.7
8
-
9
- # Real-time Communication
10
- websockets==11.0.3
11
- python-engineio==4.5.1
12
- python-socketio==5.8.0
13
-
14
- # API and Network Requests
15
- requests==2.31.0
16
- urllib3==2.0.4
17
- certifi==2023.7.22
18
-
19
- # Audio Processing
20
- pydub==0.25.1
21
- soundfile==0.12.1
22
- numpy==1.24.3
23
-
24
- # Error Handling and Logging
25
- python-json-logger==2.0.7
26
-
27
- # Security
28
- PyJWT==2.8.0
29
-
30
- # CORS support
31
- Flask-CORS==4.0.0
32
-
33
- # Time zone support
34
- pytz==2023.3
35
-
36
- # File handling
37
- python-magic==0.4.27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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