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


"""
This script examines a set of files and generates output
to help setup the .pypeit file
"""

from pypeit.scripts import setup

if __name__ == '__main__':
    setup.main(setup.parse_args())
