#! /usr/bin/python3 -sP
# -*- encoding: utf-8 -*-

import os
import sys

here = sys.path[0]
if here != "/usr/bin":
    sys.path[0] = os.path.dirname(here)

from compose_utils import essentials

if __name__ == "__main__":
    essentials.main()
