Skip to content

Commit fc3553b

Browse files
authored
Create requirements.txt
1 parent f6da191 commit fc3553b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

requirements.txt

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

0 commit comments

Comments
 (0)