#!/usr/bin/env python

"""
This will work in development on a relative folder basis
It will then work when installed in site-packages on a target system
where the runner script is in /usr/bin (or wherever)
"""

import eu.softfire.tub.main.ExperimentManager as em
if __name__ == '__main__':
    em.start_app()
else:
    application = em.application
