#!/usr/bin/env python

import os
import sys

from contur.run.run_extract_xs_bf import run_extract_xs_bf
from contur.run.arg_utils import get_args

if __name__ == "__main__":
    cl_args = get_args(sys.argv[1:],'extract_xs_bf')
    run_extract_xs_bf(cl_args)
