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

import sys
import desispec.scripts.procexp as procexp

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

