1<?xml version="1.0" encoding="UTF-8"?> 2<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3<plist version="1.0"> 4<dict> 5 <key>CFBundleDevelopmentRegion</key> 6 <string>English</string> 7 <key>CFBundleDocumentTypes</key> 8 <array> 9 <dict> 10 <key>CFBundleTypeExtensions</key> 11 <array> 12 <string>py</string> 13 <string>pyw</string> 14 </array> 15 <key>CFBundleTypeIconFile</key> 16 <string>PythonSource.icns</string> 17 <key>CFBundleTypeName</key> 18 <string>Python Script</string> 19 <key>CFBundleTypeRole</key> 20 <string>Viewer</string> 21 <key>NSDocumentClass</key> 22 <string>MyDocument</string> 23 </dict> 24 <dict> 25 <key>CFBundleTypeExtensions</key> 26 <array> 27 <string>pyc</string> 28 <string>pyo</string> 29 </array> 30 <key>CFBundleTypeIconFile</key> 31 <string>PythonCompiled.icns</string> 32 <key>CFBundleTypeName</key> 33 <string>Python Bytecode Document</string> 34 <key>CFBundleTypeRole</key> 35 <string>Viewer</string> 36 <key>NSDocumentClass</key> 37 <string>MyDocument</string> 38 </dict> 39 </array> 40 <key>CFBundleExecutable</key> 41 <string>PythonLauncher</string> 42 <key>CFBundleGetInfoString</key> 43 <string>%VERSION%, © 2001-2018 Python Software Foundation</string> 44 <key>CFBundleIconFile</key> 45 <string>PythonLauncher.icns</string> 46 <key>CFBundleIdentifier</key> 47 <string>org.python.PythonLauncher</string> 48 <key>CFBundleInfoDictionaryVersion</key> 49 <string>6.0</string> 50 <key>CFBundleName</key> 51 <string>Python Launcher</string> 52 <key>CFBundlePackageType</key> 53 <string>APPL</string> 54 <key>CFBundleShortVersionString</key> 55 <string>%VERSION%</string> 56 <key>CFBundleSignature</key> 57 <string>PytL</string> 58 <key>CFBundleVersion</key> 59 <string>%VERSION%</string> 60 <key>NSMainNibFile</key> 61 <string>MainMenu</string> 62 <key>NSPrincipalClass</key> 63 <string>NSApplication</string> 64</dict> 65</plist> 66