#!/usr/bin/env python3
"""
SETUP-EXAMPLES script for Package PLIB3.IO
Copyright (C) 2008-2015 by Peter A. Donis

Released under the GNU General Public License, Version 2
See the LICENSE and README files for more information

This script sets up symlinks in $PREFIX/bin to each of the
example programs that come with PLIB3, and byte-compiles
the examples, on systems that support symlinks (i.e.,
POSIX systems only). On other systems (i.e., Windows),
the example programs and their associated files are instead
simply copied to the Python/Scripts directory.
"""

from plib.stdlib.postinstall import setup_examples
setup_examples('plib3.io', 'plib.io', remove_py=True)
