-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
79 lines (72 loc) · 1.92 KB
/
Copy pathsetup.py
File metadata and controls
79 lines (72 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""
py2app setup script for building macOS .app bundle.
Usage:
python setup.py py2app
This will create a standalone .app in the dist/ folder.
"""
from setuptools import setup
APP = ['main.py']
APP_NAME = 'ConvertImagesToWebP'
VERSION = '0.1.0'
DATA_FILES = []
OPTIONS = {
'argv_emulation': False,
'iconfile': 'assets/icon.icns',
'plist': {
'CFBundleName': APP_NAME,
'CFBundleDisplayName': 'ConvertImagesToWebP - MacAlpha',
'CFBundleGetInfoString': 'High-performance image to WebP converter',
'CFBundleIdentifier': 'com.webpconverter.macalpha',
'CFBundleVersion': VERSION,
'CFBundleShortVersionString': VERSION,
'NSHighResolutionCapable': True,
'NSRequiresAquaSystemAppearance': False, # Support dark mode
'LSMinimumSystemVersion': '10.15', # Catalina or later
# File types this app can open
'CFBundleDocumentTypes': [
{
'CFBundleTypeName': 'Image File',
'CFBundleTypeRole': 'Viewer',
'LSItemContentTypes': [
'public.jpeg',
'public.png',
'public.tiff',
'public.heic',
'com.microsoft.bmp',
],
'LSHandlerRank': 'Alternate',
}
],
},
'packages': [
'customtkinter',
'PIL',
'piexif',
'gui',
'core',
],
'includes': [
'tkinter',
'gui.app',
'gui.screens.dropzone',
'gui.screens.settings',
'gui.screens.progress',
'gui.screens.results',
'core.config',
'core.converter',
],
'excludes': [
'matplotlib',
'numpy',
'scipy',
'pandas',
'pytest',
],
}
setup(
app=APP,
name=APP_NAME,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)