-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# requirements.txt | ||
|
||
# Web framework | ||
Flask==2.2.2 # Lightweight WSGI web application framework | ||
|
||
# API documentation | ||
Flask-RESTful==0.3.9 # Extension for Flask to build REST APIs | ||
|
||
# Data processing | ||
pandas==1.5.3 # Data manipulation and analysis | ||
numpy==1.23.5 # Numerical computing | ||
|
||
# Machine learning | ||
scikit-learn==1.2.0 # Machine learning library | ||
tensorflow==2.11.0 # Deep learning framework | ||
joblib==1.2.0 # Lightweight pipelining in Python | ||
|
||
# YAML parsing | ||
PyYAML==6.0 # YAML parser and emitter for Python | ||
|
||
# HTTP requests | ||
requests==2.28.1 # HTTP library for Python | ||
|
||
# Logging | ||
loguru==0.6.0 # Python logging made easy | ||
|
||
# Visualization (optional) | ||
matplotlib==3.6.2 # Plotting library | ||
seaborn==0.12.1 # Statistical data visualization | ||
|
||
# For testing | ||
pytest==7.2.0 # Testing framework | ||
pytest-cov==3.0.0 # Coverage reporting for pytest |