from setuptools import setup APP = ['video_crop.py'] # Name deines Skripts DATA_FILES = [] OPTIONS = { 'argv_emulation': True, 'packages': ['rumps', 'tkinter'], 'plist': { 'LSUIElement': True, # Versteckt die App im Dock, bleibt nur oben 'CFBundleName': "VideoCropper", 'CFBundleDisplayName': "Video Cropper", 'CFBundleGetInfoString': "Crop 9:16 videos to 4:5", 'CFBundleVersion': "0.1.0", 'CFBundleShortVersionString': "0.1.0", } } setup( app=APP, data_files=DATA_FILES, options={'py2app': OPTIONS}, setup_requires=['py2app'], )