#!python
#
# See top-level LICENSE.rst file for Copyright information
#
# -*- coding: utf-8 -*-

"""
This script selects calibration stars for a given exposure
by comparing the ratio of spectro to photometric r-band flux
and using an RMS across all petals.
"""

import sys
import desispec.scripts.select_calib_stars as select_calib_stars

if __name__ == '__main__':
    args = select_calib_stars.parse()
    sys.exit(select_calib_stars.main(args))
