# Sync Django backend # ML inference runs in ml_service (FastAPI/Groq) — not torch/transformers here. # Database: MySQL only (sync_backend.settings). # Django and REST Framework Django==4.2.7 djangorestframework==3.14.0 django-cors-headers==4.3.1 djangorestframework-simplejwt==5.3.0 # Database (MySQL) # On shared hosting, if mysqlclient fails to build, use PyMySQL + ENGINE change (see deployment docs). mysqlclient==2.2.0 # Celery and broker celery==5.3.4 redis==5.0.1 gevent==23.9.1 eventlet==0.33.3 # HTTP / OAuth (Instagram) requests==2.31.0 oauthlib==3.2.2 requests-oauthlib==1.3.1 # Security cryptography==41.0.7 python-decouple==3.8 # Used by matching_service (cosine similarity) numpy==1.26.3 # Management commands (e.g. populate_from_csv --export-excel) openpyxl==3.1.2 # Env files python-dotenv==1.0.0 setuptools