#!python
"""\
%prog

Make LaTeX bibliography from contur analysis database.

ENVIRONMENT:
 * CONTUR_WEBDIR: if set, the bib file will be written to this directory. 
   Set it to the Sphinx subdir of the contur-webpage project, if present.
"""

import sys

from contur.run.run_mkbib import main
from contur.run.arg_utils import get_args

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

