Hosting Django App in custom Hepsia Panel

I have got my app ready for production but the hosting provider (https://cp.freehostia.com) is using custom Hepsia Panel rather than NameCheap Cpanel. Am totally fine dealing with cpanel.

Creating a python app in NameCheap Cpanel is really headache as they only allow you to change python version no other settings are provided.

Here is a glimpse of what their instructions say:
pip install git+https://github.com/NetAngels/django-fastcgi
pip install flup6
pip install mezzanine

Then set up .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.fcgi/$1 [QSA,L]

Then setup index.fcgi file
#!/home/venv/bin/python3.5

-- coding: utf-8 --

import os
import sys
activate_this = ‘/home/venv/bin/activate_this.py’
exec(open(activate_this).read(), dict(file=activate_this))
cms_path = ‘/home/www/mydjangocms/’
sys.path.insert(0, cms_path)
os.chdir(cms_path)

Set the DJANGO_SETTINGS_MODULE environment variable.

os.environ[‘DJANGO_SETTINGS_MODULE’] = “mydjangocms.settings”
from django_fastcgi.servers.fastcgi import runfastcgi
from django.core.servers.basehttp import get_internal_wsgi_application
wsgi_application = get_internal_wsgi_application()
runfastcgi(wsgi_application, method=“prefork”, daemonize=“false”, minspare=1, maxspare=1, maxchildren=1)

Then make index.fcgi executable
chmod +x index.fcgi

In summary after googling and rereading their docs, fastcgi is supported in olde version of django: How to use Django with FastCGI, SCGI, or AJP | Django documentation | Django

Can someone help me in hosting the app