"""
Script for building the example.

Usage:
    python setup.py py2app
"""
from distutils.core import setup
import py2app

setup(
    name="PyObjC Launcher",
    app=["PyObjCLauncher.py"],
    data_files=["English.lproj"],
    options=dict(py2app=dict(
        plist='Info.plist',
    )),
)
