Three point light rig using RGB directional lights

'''
TPLrgbDirect.py v1.0

Author: Nate Lang
web: natelang3d.com

Install: Copy + paste this code as a python button on your shelf

USE: 
This will make a simple 3 light rig using maya directional lights.
These Lights are colored pure Red, pure Green, and pure Blue.
Useful for quick setups when doing render tests with fluids or shaders.
*Feel free to edit as you wish
'''

from maya import cmds

#----------------------
# RBG Directional Lights
#----------------------

def makeRGBdirectLight():
    lightGrpName = cmds.group(name='RGBdirect#', empty=True, world=True)
    lightNames = ['key','bounce','back']
    for eachName in lightNames:
        print eachName
        lightAttrs = []
        if eachName == 'key':
            lightAttrs = getKeyAttrs()
        elif eachName == 'bounce':
            lightAttrs = getBounceAttrs()
        else:
            lightAttrs = getBackAttrs()
        newName = lightGrpName + '_' + lightAttrs[0]
        cmds.directionalLight(name=newName, rgb=(lightAttrs[1],lightAttrs[2],lightAttrs[3]), intensity=lightAttrs[4])
        cmds.setAttr(newName+'.rotateX', lightAttrs[5])
        cmds.setAttr(newName+'.rotateY', lightAttrs[6])
        cmds.setAttr(newName+'.rotateZ', lightAttrs[7])
        cmds.parent(newName, lightGrpName)
        print lightAttrs

def getKeyAttrs():
    lightName = 'key'
    lightColorR = 1
    lightColorG = 0
    lightColorB = 0
    lightIntensity = 1
    lightRotX = -45
    lightRotY = -45
    lightRotZ = 0
    attrArray = [lightName, lightColorR, lightColorG, lightColorB, lightIntensity, lightRotX, lightRotY, lightRotZ]
    return attrArray
    
def getBounceAttrs():
    lightName = 'bounce'
    lightColorR = 0
    lightColorG = 1
    lightColorB = 0
    lightIntensity = 1
    lightRotX = 30
    lightRotY = 60
    lightRotZ = 0
    attrArray = [lightName, lightColorR, lightColorG, lightColorB, lightIntensity, lightRotX, lightRotY, lightRotZ]
    return attrArray
    
def getBackAttrs():
    lightName = 'back'
    lightColorR = 0
    lightColorG = 0
    lightColorB = 1
    lightIntensity = 1
    lightRotX = 0
    lightRotY = 160
    lightRotZ = 0
    attrArray = [lightName, lightColorR, lightColorG, lightColorB, lightIntensity, lightRotX, lightRotY, lightRotZ]
    return attrArray
    
makeRGBdirectLight()