• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Automator-2.5.1/Examples/AutoSample/
1"""
2Script for building the example.
3
4Usage:
5    python setup.py py2app
6"""
7from distutils.core import setup
8import py2app
9
10setup(
11    name="AutoSample",
12    app=["main.py"],
13    data_files=["English.lproj", "workflows"],
14)
15