#! /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 repo_file

if __name__ == '__main__':
    repo_file.main()
