Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +51 -8
requirements.txt
CHANGED
@@ -1,8 +1,51 @@
|
|
1 |
-
#
|
2 |
-
#
|
3 |
-
|
4 |
-
#
|
5 |
-
streamlit
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# MoneyPrinterTurbo - Huggingface Spaces Dependencies
|
2 |
+
# Optimized for FREE tier deployment
|
3 |
+
|
4 |
+
# Core Streamlit
|
5 |
+
streamlit>=1.28.0
|
6 |
+
streamlit-option-menu>=0.3.6
|
7 |
+
|
8 |
+
# Configuration
|
9 |
+
toml>=0.10.0
|
10 |
+
|
11 |
+
# Logging
|
12 |
+
loguru>=0.7.0
|
13 |
+
|
14 |
+
# AI/LLM Libraries
|
15 |
+
openai>=1.0.0
|
16 |
+
requests>=2.31.0
|
17 |
+
|
18 |
+
# Video Processing (lightweight)
|
19 |
+
pillow>=10.0.0
|
20 |
+
moviepy>=1.0.3
|
21 |
+
|
22 |
+
# Audio Processing
|
23 |
+
pydub>=0.25.1
|
24 |
+
|
25 |
+
# Data Handling
|
26 |
+
pandas>=2.0.0
|
27 |
+
numpy>=1.24.0
|
28 |
+
|
29 |
+
# HTTP Client
|
30 |
+
httpx>=0.24.0
|
31 |
+
|
32 |
+
# Image Processing
|
33 |
+
opencv-python-headless>=4.8.0
|
34 |
+
|
35 |
+
# Compatibility fixes
|
36 |
+
protobuf<=3.20.3
|
37 |
+
|
38 |
+
# File handling
|
39 |
+
pathlib2>=2.3.7
|
40 |
+
|
41 |
+
# JSON handling
|
42 |
+
jsonschema>=4.17.0
|
43 |
+
|
44 |
+
# Time utilities
|
45 |
+
python-dateutil>=2.8.2
|
46 |
+
|
47 |
+
# UUID utilities
|
48 |
+
uuid>=1.30
|
49 |
+
|
50 |
+
# System utilities
|
51 |
+
psutil>=5.9.0
|