사진 선별 GUI 앱 초기 커밋

RAW/JPG 매칭 스크립트에 tkinter GUI(폴더 선택)를 추가하고
py2app으로 .app/.dmg 패키징 설정 포함.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-11 14:11:30 +09:00
co-authored by Claude Sonnet 5
commit 610cb40ce3
5 changed files with 228 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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'],
)