From fc3553b87f7f67530f46af9d3c8a0d59c147f9ef Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Tue, 29 Oct 2024 19:53:45 +0700 Subject: [PATCH] Create requirements.txt --- requirements.txt | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2fb0b3b --- /dev/null +++ b/requirements.txt @@ -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