"""
WSGI config for gazeanalyser project.

It exposes the WSGI callable as a module-level variable named ``application``.

For more information on this file, see
https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/
"""

import os, sys

sys.path.append('/home/gea-env/lib/python2.7/site-packages')
sys.path.append('/var/www/gea')
sys.path.append('/var/www/gea/gazeanalyser')

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gazeanalyser.settings")

application = get_wsgi_application()
