ยปCore Development>Code coverage>Mac/Modules/launch/setup.py

Python code coverage for Mac/Modules/launch/setup.py

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