#!/usr/bin/env python
# vim: filetype=python
"""This is a convenience script to run tinyprint GUI on dev mode

(e.g. to start tinyprint with local, not-installed source)
"""

# Go up 1 level to reach tinyprint
import sys, os
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))

from tinyprint import __main__
__main__.main()
