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

import sys
import desispec.scripts.specscore as specscore

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