Rev | Line | |
---|
[188] | 1 | """ |
---|
| 2 | Script for building the example. |
---|
| 3 | |
---|
| 4 | Usage: |
---|
| 5 | python setup.py py2app |
---|
| 6 | """ |
---|
| 7 | from distutils.core import setup, Extension |
---|
| 8 | import py2app |
---|
| 9 | |
---|
| 10 | plist = dict( |
---|
| 11 | CFBundleIdentifier='net.sabi.StreamVision', |
---|
| 12 | CFBundleName='StreamVision', |
---|
| 13 | NSPrincipalClass='StreamVision', |
---|
| 14 | LSUIElement=1, |
---|
| 15 | ) |
---|
| 16 | |
---|
| 17 | setup( |
---|
| 18 | app=["StreamVision.py"], |
---|
| 19 | ext_modules=[Extension('_StreamVision', |
---|
| 20 | sources=['_StreamVisionmodule.c'], |
---|
| 21 | extra_link_args=['-framework', 'Carbon'])], |
---|
| 22 | data_files=["English.lproj"], |
---|
| 23 | options=dict(py2app=dict(plist=plist)), |
---|
| 24 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.