-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
112 lines (99 loc) · 4.57 KB
/
setup.py
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
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app --includes sip
python setup.py py2exe --includes sip
"""
import os
import sys
import glob
if sys.platform == 'darwin':
from setuptools import setup
import py2app
elif sys.platform == 'win32':
from distutils.core import setup
import py2exe
import py2exe.build_exe
sys.setrecursionlimit(100000)
from distutils.filelist import findall
import matplotlib
matplotlibdatadir = matplotlib.get_data_path()
matplotlibdata = findall(matplotlibdatadir)
matplotlibdata_files = []
for f in matplotlibdata:
dirname = os.path.join('matplotlib', f[len(matplotlibdatadir)+1:])
matplotlibdata_files.append((os.path.split(dirname)[0], [f]))
matplotlibdata_files += [(r'mpl-data', glob.glob(r'C:\Python25\Lib\site-packages\matplotlib\mpl-data\*.*')),
(r'mpl-data\images',glob.glob(r'C:\Python25\Lib\site-packages\matplotlib\mpl-data\images\*.*')),
(r'mpl-data\fonts',glob.glob(r'C:\Python25\Lib\site-packages\matplotlib\mpl-data\fonts\*.*'))]
def find_data_files(sources, targets, patterns):
"""Locates the specified data-files and returns the matches
in a data_files compatible format.
source is the root of the source data tree.
Use '' or '.' for current directory.
target is the root of the target data tree.
Use '' or '.' for the distribution directory.
patterns is a sequence of glob-patterns for the
files you want to copy.
"""
ret = {}
for i, source in enumerate(sources):
target = targets[i]
if glob.has_magic(source) or glob.has_magic(target):
raise ValueError("Magic not allowed in src, target")
pattern = os.path.join(source, patterns[i])
for filename in glob.glob(pattern):
if os.path.isfile(filename):
targetpath = os.path.join(target, os.path.relpath(filename, source))
path = os.path.dirname(targetpath)
ret.setdefault(path, []).append(filename)
return sorted(ret.items())
APP = ['interlink.py']
INCLUDES = ['sip', 'PyQt4', 'operator', 'sys', 'os', 'matplotlib', "matplotlib.backends", "matplotlib.backends.backend_qt4agg"]
OPTIONS = {'argv_emulation': True,
'includes': INCLUDES,
'iconfile' : 'icons/Icon.icns',
'plist': {'CFBundleGetInfoString': 'Interlink',
'CFBundleIdentifier': 'edu.uiowa.ahern.interlink',
'CFBundleShortVersionString': '0.2',
'CFBundleName': 'Interlink',
'CFBundleVersion': '02',
'NSHumanReadableCopyright': '(c) 2016 Venkatramanan Krishnamani'},
'excludes': ['PyQt4.QtDesigner', 'PyQt4.QtNetwork', 'PyQt4.QtOpenGL', 'PyQt4.QtScript', 'PyQt4.QtSql', 'PyQt4.QtTest', 'PyQt4.QtWebKit', 'PyQt4.QtXml', 'PyQt4.phonon'],}
DATA_FILES_MAC = find_data_files(['structs', 'structs/pyteomics', 'ui/mac', 'icons/48/User_Interface', 'icons/48/Files', 'icons'],
['structs', 'structs/pyteomics', 'ui/mac', 'icons/48/User_Interface', 'icons/48/Files', 'icons'],
['*.py', '*.py', '*.ui', '*', '*', '*.png'])
DATA_FILES_WIN = find_data_files(['structs', 'structs/pyteomics', 'ui/win', 'icons/48/User_Interface', 'icons/48/Files', 'icons'],
['structs', 'structs/pyteomics', 'ui/win', 'icons/48/User_Interface', 'icons/48/Files', 'icons'],
['*.py', '*.py', '*.ui', '*', '*', '*.png'])
DATA_FILES_WIN += matplotlibdata_files
if sys.platform == 'darwin':
setup(
app=APP,
name='Interlink',
options={'py2app': OPTIONS},
setup_requires=['py2app'],
author='Venkatramanan Krishnamani',
data_files=DATA_FILES_MAC,
)
elif sys.platform == 'win32':
origIsSystemDLL = py2exe.build_exe.isSystemDLL
def isSystemDLL(pathname):
if os.path.basename(pathname).lower() in ("msvcp71.dll", "dwmapi.dll", "'msvcp90.dll'"):
return 0
return origIsSystemDLL(pathname)
py2exe.build_exe.isSystemDLL = isSystemDLL
setup(
version='0.1',
description='Interlink',
author='Venkatramanan Krishnamani',
windows=[{"script":'interlink.py',
# "icon_resources": [(1, "icon/Icon.ico")],
"dest_base":"Interlink"
}],
data_files=DATA_FILES_WIN,
options={"py2exe": {'includes': INCLUDES,
"optimize": 2,
"compressed": 2,
}}
)