Skip to content

Commit

Permalink
Create requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Oct 29, 2024
1 parent f6da191 commit fc3553b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions requirements.txt
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

0 comments on commit fc3553b

Please sign in to comment.