0001"""Some useful functions for basic actions on the commmand line.
0002
0003This package contains the following:
0004
0005prompt
0006    Input and output functions
0007
0008control
0009    Primary interface layer for terminal control
0010
0011abstract
0012    Secondary abstractions for terminal control
0013"""
0014
0015__all__ = ["prompt", "control", "abstract"]
0016__version__ = '0.5.1'
0017__license__ = "GPL"
0018__author__ = "Alan Trick"
0019__author_email__ = "alantrick@users.sourceforge.net"
0020__url__ = "http://sourceforge.net/projects/terminate"