author:  William Schilthuis
email:   williamGS@gmail.com
website: http://williamgs.com
license: http://www.gnu.org/licenses/gpl-3.0.html

requires: functools.partial, pickle, os, maya.cmds, maya.mel
developed with Maya2011
tested with Maya2011,Maya2012

Summary:
Automatic and customizable Linear Workflow in Maya. For more info,
see python help.

Package Notes:
    1. icons/ - contains UI icons. This does not need to be added to your
                icon path or anything, the icons are automatically loaded
                using relative paths with python.
    2. prefs/ - this stores custom exclusions and preferences in
                a pickle file (stored python object).
    3. __init__.py - all the code.

Installation:
1 - A: Copy the wLinearWorkflow folder to your scripts directory, or
    B: run this Python in maya:
            sys.path.append('FULLPATHTOFOLDER/wLinearWorkflow')
2 - To run the tool, save the following Python code to a shelf command:
        import wLinearWorkflow as wLW
        reload(wLW)
        wLW.loadUI()
3 - For help, run this Python:
        import wLinearWorkflow as wLW
        help(wLW)
        
Questions, bugs, comments can be emailed to me, or posted on my blog.