#!/usr/bin/env python
import os
import sys

# Add the current branch to the python path
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))

from jarmonbuild.commands import main

raise SystemExit(main())