Update requirements.txt
Browse files- requirements.txt +11 -20
requirements.txt
CHANGED
@@ -1,24 +1,15 @@
|
|
1 |
-
#
|
2 |
-
|
3 |
-
|
4 |
-
# To install all dependencies, run the following command in your terminal:
|
5 |
-
# pip install -r requirements.txt
|
6 |
-
# -----------------------------------------------------------------
|
7 |
|
8 |
-
#
|
9 |
-
|
10 |
|
11 |
-
#
|
12 |
-
|
13 |
-
numpy==1.26.4 # Fundamental package for numerical computing in Python
|
14 |
|
15 |
-
#
|
16 |
-
|
17 |
-
kaleido==0.2.1 # Used by Plotly for static image export capabilities (optional but recommended)
|
18 |
|
19 |
-
#
|
20 |
-
|
21 |
-
|
22 |
-
# Environment Variable Management
|
23 |
-
python-dotenv==1.0.1 # For loading environment variables from a .env file (e.g., your API key)
|
24 |
-
openpyxl
|
|
|
1 |
+
# Core Data & Computation
|
2 |
+
pandas
|
3 |
+
numpy
|
|
|
|
|
|
|
4 |
|
5 |
+
# Visualization
|
6 |
+
plotly
|
7 |
|
8 |
+
# Web Application Framework
|
9 |
+
gradio
|
|
|
10 |
|
11 |
+
# AI & API Integration
|
12 |
+
google-generativeai
|
|
|
13 |
|
14 |
+
# Optional Pandas Dependencies for specific features
|
15 |
+
tabulate # Required for .to_markdown() functionality
|
|
|
|
|
|
|
|