You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go.Drop./predev/setup.py

24 lines
612 B

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'],
)

Powered by TurnKey Linux.