• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/HotKeyPython/
1"""
2Script for building the example.
3
4Usage:
5    python setup.py py2app
6"""
7from setuptools import setup
8
9plist = dict(
10    NSPrincipalClass='HotKeyApp',
11)
12
13
14setup(
15    app=["HotKey.py"],
16    data_files=["English.lproj"],
17    setup_requires=["py2app"],
18    options=dict(py2app=dict(plist=plist)),
19)
20