Python code coverage for Mac/Modules/launch/setup.py
| # | count | content |
|---|---|---|
| 1 | n/a | # This is a temporary setup script to allow distribution of |
| 2 | n/a | # MacPython 2.4 modules for MacPython 2.3. |
| 3 | n/a | |
| 4 | n/a | from distutils.core import Extension, setup |
| 5 | n/a | |
| 6 | n/a | setup(name="LaunchServices", version="0.2", |
| 7 | n/a | ext_modules=[ |
| 8 | n/a | Extension('_Launch', ['_Launchmodule.c'], |
| 9 | n/a | extra_link_args=['-framework', 'ApplicationServices']) |
| 10 | n/a | ], |
| 11 | n/a | py_modules=['LaunchServices.Launch', 'LaunchServices.LaunchServices'], |
| 12 | n/a | package_dir={'LaunchServices':'../../../Lib/plat-mac/Carbon'} |
| 13 | n/a | ) |
