forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_exe.py
54 lines (45 loc) · 1.73 KB
/
create_exe.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
# -*- coding: utf-8 -*-
#
# Copyright © 2011 Pierre Raybaut
# Licensed under the terms of the MIT License
# (see spyderlib/__init__.py for details)
"""Create a stand-alone executable"""
try:
from guidata.disthelpers import Distribution
except ImportError:
raise ImportError("This script requires guidata 1.5+")
import os.path as osp
import imp
import spyderlib
def create_executable():
"""Build executable using ``guidata.disthelpers``"""
dist = Distribution()
name = "spyder"
ver = spyderlib.__version__
try:
imp.find_module('PyQt4')
python_qt = 'pyqt'
except ImportError:
python_qt = 'pyside'
dist.setup(name="Spyder", version=ver, script="spyderlib/spyder.py",
description="Scientific PYthon Development EnviRonment",
target_name="%s.exe" % name, icon="%s.ico" % name,
target_dir="%s-win32-%s-sa-%s" % (name, python_qt, ver))
spyderlib.add_to_distribution(dist)
dist.add_modules('matplotlib', 'h5py', 'scipy.io', 'guidata', 'pygments')
try:
import guiqwt # analysis:ignore
dist.add_modules('guiqwt')
except ImportError:
pass
dist.includes += ['spyderlib.scientific_startup',
'spyderlib.widgets.externalshell.sitecustomize']
#XXX: ...until we are able to distribute them (see guidata.disthelpers)
dist.excludes += ['sphinx', 'zmq', 'IPython']
if osp.isfile("Spyderdoc.chm"):
dist.add_data_file("Spyderdoc.chm")
dist.add_data_file(osp.join("rope", "base", "default_config.py"))
# Building executable
dist.build('cx_Freeze')#, create_archive='move')
if __name__ == '__main__':
create_executable()