If you want to do away with external dependencies entirely, and are running OS X 10.5+, you can use the included command-line audio player, afplay, along with the subprocess module.
I haven't tested it, but this should work:
import subprocess
audio_file = "/full/path/to/audio.wav"
return_code = subprocess.call(["afplay", audio_file])
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…