File: setup.py

package info (click to toggle)
python2.4 2.4.4-3%2Betch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 44,684 kB
  • ctags: 86,948
  • sloc: ansic: 305,981; python: 271,903; sh: 5,540; makefile: 4,186; perl: 3,736; lisp: 3,678; xml: 894; objc: 756; cpp: 7; sed: 2
file content (13 lines) | stat: -rwxr-xr-x 501 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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="QuickTime", version="0.2",
        ext_modules=[
                Extension('QuickTime._Qt', ['_Qtmodule.c'],
                extra_link_args=['-framework', 'Carbon', '-framework', 'QuickTime'])
        ],
        py_modules=['QuickTime.Qt', 'QuickTime.QuickTime'],
        package_dir={'QuickTime':'../../../Lib/plat-mac/Carbon'}
        )