entropy25 commited on
Commit
8f22859
·
verified ·
1 Parent(s): 1348d26

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +18 -3
requirements.txt CHANGED
@@ -1,12 +1,27 @@
1
- # This is the correct requirements file for the new, enhanced code.
 
2
  streamlit==1.35.0
3
  pandas==2.2.2
4
  numpy==1.26.4
5
  plotly==5.22.0
 
 
 
 
6
  chardet==5.2.0
7
  openpyxl==3.1.2
 
 
8
  python-dotenv==1.0.1
 
 
9
  openai==1.28.1
10
  google-generativeai==0.7.1
11
- scipy==1.13.1
12
- scikit-learn==1.5.0
 
 
 
 
 
 
 
1
+ # Enhanced Data Analysis Platform Requirements
2
+ # Core dependencies
3
  streamlit==1.35.0
4
  pandas==2.2.2
5
  numpy==1.26.4
6
  plotly==5.22.0
7
+
8
+ # Data processing
9
+ scipy==1.13.1
10
+ scikit-learn==1.5.0
11
  chardet==5.2.0
12
  openpyxl==3.1.2
13
+
14
+ # Environment and configuration
15
  python-dotenv==1.0.1
16
+
17
+ # Optional AI features (install if needed)
18
  openai==1.28.1
19
  google-generativeai==0.7.1
20
+
21
+ # Additional utilities for enhanced features
22
+ xlrd==2.0.1 # For older Excel files
23
+ xlsxwriter==3.1.9 # For Excel export with formatting
24
+
25
+ # Development and testing (optional)
26
+ pytest==7.4.4
27
+ pytest-streamlit==0.1.0