diff options
Diffstat (limited to 'Mac/Modules/launch/setup.py')
-rw-r--r-- | Mac/Modules/launch/setup.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Mac/Modules/launch/setup.py b/Mac/Modules/launch/setup.py deleted file mode 100644 index 2054195..0000000 --- a/Mac/Modules/launch/setup.py +++ /dev/null @@ -1,13 +0,0 @@ -# This is a temporary setup script to allow distribution of -# MacPython 2.4 modules for MacPython 2.3. - -from distutils.core import Extension, setup - -setup(name="LaunchServices", version="0.2", - ext_modules=[ - Extension('_Launch', ['_Launchmodule.c'], - extra_link_args=['-framework', 'ApplicationServices']) - ], - py_modules=['LaunchServices.Launch', 'LaunchServices.LaunchServices'], - package_dir={'LaunchServices':'../../../Lib/plat-mac/Carbon'} - ) |