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

"""
This script computes the PSF serially with SpecEX.
"""

import sys
import desispec.scripts.specex as specex

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