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.
24 lines
614 B
24 lines
614 B
from setuptools import setup
|
|
|
|
APP = ['old_but_work.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'],
|
|
)
|