forked from yousseb/meld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_py2app.py
More file actions
131 lines (124 loc) · 3.87 KB
/
Copy pathsetup_py2app.py
File metadata and controls
131 lines (124 loc) · 3.87 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# -*- coding: utf-8 -*-
#!/usr/bin/env python
import glob
import os
import site
from setuptools import setup
import meld.meldapp
import meld.conf
APP_NAME = 'MeldMerge'
VERSION_STRING = meld.conf.__version__
FORCE_32_BIT = False
PLIST = {
'CFBundleDocumentTypes': [
{
'CFBundleTypeExtensions': ['scmdifftool'],
'CFBundleTypeIconFile': 'DiffToolDocument',
'CFBundleTypeName': 'Diff Tool',
'CFBundleTypeRole': 'Editor',
'LSTypeIsPackage': True,
},
],
'LSEnvironment':
{
'DYLD_LIBRARY_PATH': 'Contents/Resources/lib:Contents/Frameworks/',
'LIBRARY_PATH': 'Contents/Resources:/lib:Contents/Frameworks/'
},
'CFBundleIdentifier': 'org.gnome.meld',
'CFBundleShortVersionString': VERSION_STRING,
'CFBundleSignature': '???',
'CFBundleVersion': VERSION_STRING,
'LSPrefersPPC': FORCE_32_BIT,
'NSHumanReadableCopyright': u'Copyright © 2016',
'CFBundleDisplayName': 'Meld',
'CFBundleName': 'Meld',
'NSHighResolutionCapable': True,
'LSApplicationCategoryType': 'public.app-category.productivity',
'LSRequiresNativeExecution': True,
}
#find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
from modulegraph.find_modules import PY_SUFFIXES
PY_SUFFIXES.append('')
setup(
name='Meld',
version=meld.conf.__version__,
description='Visual diff and merge tool',
author='Kai Willadsen',
author_email='kai.willadsen@gmail.com',
url='http://meldmerge.org',
license='GPLv2+',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Desktop Environment :: Gnome',
'Topic :: Software Development',
'Topic :: Software Development :: Version Control',
],
packages=[
'meld',
'meld.ui',
'meld.util',
'meld.vc',
],
package_data={
'meld': ['README', 'COPYING', 'NEWS'],
'meld.vc': ['README', 'COPYING'],
},
app=['bin/meld'],
setup_requires=["py2app"],
options={'py2app': {
'includes': '',
'frameworks':
'libatk-1.0.0.dylib,'
'libcairo-gobject.2.dylib,'
'libcairo-script-interpreter.2.dylib,'
'libcairo.2.dylib,'
'libgio-2.0.0.dylib,'
'libgirepository-1.0.1.dylib,'
'libglib-2.0.0.dylib,'
'libgmodule-2.0.0.dylib,'
'libgobject-2.0.0.dylib,'
'libgtk-3.0.dylib,'
'libgtkmacintegration-gtk3.2.dylib,'
'libgtksourceview-3.0.1.dylib,'
'libharfbuzz.0.dylib,'
'libpango-1.0.0.dylib,'
'libpangocairo-1.0.0.dylib,'
'libpangoft2-1.0.0.dylib,'
'librsvg-2.2.dylib,'
,
'argv_emulation': True,
'iconfile': 'osx/meld.icns',
'plist': PLIST,
'prefer_ppc': False,
}},
data_files=[
('share/man/man1',
['meld.1']
),
('share/doc/meld',
['COPYING', 'NEWS']
),
('share/meld',
['data/gschemas.compiled']
),
('share/meld',
['data/org.gnome.meld.gschema.xml']
),
('share/meld',
['data/meld.css']
),
('share/meld/icons',
glob.glob("data/icons/*.png") +
glob.glob("data/icons/COPYING*")
),
('share/meld/ui',
glob.glob("data/ui/*.ui") + glob.glob("data/ui/*.xml")
),
],
)