diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-12 22:25:16 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-12 22:25:16 (GMT) |
commit | 69a07fbd9b2c1e2d203532d4babbc6d874d389ee (patch) | |
tree | 822d06c6602339d309b30584ca0bfd05f5b56edc /Mac/Modules/launch/setup.py | |
parent | a005b34f14fd4548c84886244b68d2c34e75edbd (diff) | |
download | cpython-69a07fbd9b2c1e2d203532d4babbc6d874d389ee.zip cpython-69a07fbd9b2c1e2d203532d4babbc6d874d389ee.tar.gz cpython-69a07fbd9b2c1e2d203532d4babbc6d874d389ee.tar.bz2 |
Remove the Mac modules
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'} - ) |