#!/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
"""

import pypeit.scripts.setup as setup

if __name__ == '__main__':
    args = setup.parser()
    setup.main(args)
