from setuptools import setup APP = ['photo_selector_gui.py'] OPTIONS = { 'argv_emulation': False, 'plist': { 'CFBundleName': '사진 선별기', 'CFBundleDisplayName': '사진 선별기', 'CFBundleIdentifier': 'com.hootongerun.photoselector', 'CFBundleShortVersionString': '1.0.0', 'CFBundleVersion': '1.0.0', 'NSHumanReadableCopyright': '', 'LSMinimumSystemVersion': '10.13', 'NSHighResolutionCapable': True, }, } setup( app=APP, name='PhotoSelector', options={'py2app': OPTIONS}, setup_requires=['py2app'], )