#!/usr/bin/python
import os
__file__=os.path.realpath(__file__)
import site
site.addsitedir('/mit/xavid/lib/python2.7/site-packages/')
site.addsitedir(os.path.dirname(__file__))

__requires__ = 'Monkey'
import pkg_resources
pkg_resources.require('Monkey')

import monkey

import sys

if __name__ == '__main__':
    # Load the WSGI application from the config file
    from paste.deploy import loadapp
    wsgi_app = loadapp('config:'+os.path.dirname(__file__)+'/development.ini')
    
    from bazki.prod import prod

    prod(*sys.argv[1:])
