File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ # requirements.txt
2
+
3
+ # Web framework
4
+ Flask == 2.2.2 # Lightweight WSGI web application framework
5
+
6
+ # API documentation
7
+ Flask-RESTful == 0.3.9 # Extension for Flask to build REST APIs
8
+
9
+ # Data processing
10
+ pandas == 1.5.3 # Data manipulation and analysis
11
+ numpy == 1.23.5 # Numerical computing
12
+
13
+ # Machine learning
14
+ scikit-learn == 1.2.0 # Machine learning library
15
+ tensorflow == 2.11.0 # Deep learning framework
16
+ joblib == 1.2.0 # Lightweight pipelining in Python
17
+
18
+ # YAML parsing
19
+ PyYAML == 6.0 # YAML parser and emitter for Python
20
+
21
+ # HTTP requests
22
+ requests == 2.28.1 # HTTP library for Python
23
+
24
+ # Logging
25
+ loguru == 0.6.0 # Python logging made easy
26
+
27
+ # Visualization (optional)
28
+ matplotlib == 3.6.2 # Plotting library
29
+ seaborn == 0.12.1 # Statistical data visualization
30
+
31
+ # For testing
32
+ pytest == 7.2.0 # Testing framework
33
+ pytest-cov == 3.0.0 # Coverage reporting for pytest
You can’t perform that action at this time.
0 commit comments