# Dependencies for shared cPanel / Passenger hosting (MySQL, no gunicorn). # Use this instead of requirements.txt on cPanel: pip install -r requirements-cpanel.txt Django==4.2.30 djangorestframework==3.15.2 djangorestframework-simplejwt==5.3.1 django-cors-headers==4.6.0 django-filter==24.3 django-environ==0.11.2 # MySQL driver — pure-Python, installs without a compiler (cPanel-friendly). # If your host CAN build C extensions you may use mysqlclient instead. PyMySQL==1.1.1 # Required by PyMySQL for MySQL 8's caching_sha2_password auth. cryptography==44.0.0 # Background jobs run inline on shared hosting (CELERY_TASK_ALWAYS_EAGER=true), # but Celery itself must still import. celery==5.4.0 # Static files served by the app (no separate web server needed). whitenoise==6.8.2 python-dateutil==2.9.0.post0