Upload these files into your Python app root in cPanel.

Before starting the app, update Admin/settings.py:
- set DEBUG = False
- set ALLOWED_HOSTS to your domain and www version
- optionally change SECRET_KEY

Then in cPanel Terminal inside this folder:
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py collectstatic --noinput

In Python Selector / Setup Python App:
- Application root: this folder
- Application startup file: passenger_wsgi.py
- Entry point: application
