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

import sys
import desispec.scripts.rejectcosmics as reject

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