RAW/JPG 매칭 스크립트에 tkinter GUI(폴더 선택)를 추가하고 py2app으로 .app/.dmg 패키징 설정 포함. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
24 lines
605 B
Python
24 lines
605 B
Python
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'],
|
|
)
|