forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
306 lines (258 loc) · 11.2 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# -*- coding: utf-8 -*-
#
# Copyright © Spyder Project Contributors
# Licensed under the terms of the MIT License
# (see spyder/__init__.py for details)
"""
Spyder
======
The Scientific PYthon Development EnviRonment
"""
from __future__ import print_function
import os
import os.path as osp
import subprocess
import sys
import shutil
from distutils.core import setup
from distutils.command.build import build
from distutils.command.install import install
from distutils.command.install_data import install_data
#==============================================================================
# Check for Python 3
#==============================================================================
PY3 = sys.version_info[0] == 3
#==============================================================================
# Minimal Python version sanity check
# Taken from the notebook setup.py -- Modified BSD License
#==============================================================================
v = sys.version_info
if v[:2] < (2,7) or (v[0] >= 3 and v[:2] < (3,3)):
error = "ERROR: Spyder requires Python version 2.7 or 3.3 or above."
print(error, file=sys.stderr)
sys.exit(1)
#==============================================================================
# Constants
#==============================================================================
NAME = 'spyder'
LIBNAME = 'spyder'
from spyder import __version__, __project_url__
#==============================================================================
# Auxiliary functions
#==============================================================================
def get_package_data(name, extlist):
"""Return data files for package *name* with extensions in *extlist*"""
flist = []
# Workaround to replace os.path.relpath (not available until Python 2.6):
offset = len(name)+len(os.pathsep)
for dirpath, _dirnames, filenames in os.walk(name):
for fname in filenames:
if not fname.startswith('.') and osp.splitext(fname)[1] in extlist:
flist.append(osp.join(dirpath, fname)[offset:])
return flist
def get_subpackages(name):
"""Return subpackages of package *name*"""
splist = []
for dirpath, _dirnames, _filenames in os.walk(name):
if osp.isfile(osp.join(dirpath, '__init__.py')):
splist.append(".".join(dirpath.split(os.sep)))
return splist
def get_data_files():
"""Return data_files in a platform dependent manner"""
if sys.platform.startswith('linux'):
if PY3:
data_files = [('share/applications', ['scripts/spyder3.desktop']),
('share/pixmaps', ['img_src/spyder3.png'])]
else:
data_files = [('share/applications', ['scripts/spyder.desktop']),
('share/pixmaps', ['img_src/spyder.png'])]
elif os.name == 'nt':
data_files = [('scripts', ['img_src/spyder.ico',
'img_src/spyder_reset.ico'])]
else:
data_files = []
return data_files
def get_packages():
"""Return package list"""
packages = (
get_subpackages(LIBNAME)
+ get_subpackages('spyder_breakpoints')
+ get_subpackages('spyder_profiler')
+ get_subpackages('spyder_pylint')
+ get_subpackages('spyder_io_dcm')
+ get_subpackages('spyder_io_hdf5')
)
return packages
#==============================================================================
# Make Linux detect Spyder desktop file
#==============================================================================
class MyInstallData(install_data):
def run(self):
install_data.run(self)
if sys.platform.startswith('linux'):
try:
subprocess.call(['update-desktop-database'])
except:
print("ERROR: unable to update desktop database",
file=sys.stderr)
CMDCLASS = {'install_data': MyInstallData}
#==============================================================================
# Sphinx build (documentation)
#==============================================================================
def get_html_help_exe():
"""Return HTML Help Workshop executable path (Windows only)"""
if os.name == 'nt':
hhc_base = r'C:\Program Files%s\HTML Help Workshop\hhc.exe'
for hhc_exe in (hhc_base % '', hhc_base % ' (x86)'):
if osp.isfile(hhc_exe):
return hhc_exe
else:
return
try:
from sphinx import setup_command
class MyBuild(build):
user_options = [('no-doc', None, "Don't build Spyder documentation")] \
+ build.user_options
def __init__(self, *args, **kwargs):
build.__init__(self, *args, **kwargs)
self.no_doc = False
def with_doc(self):
setup_dir = os.path.dirname(os.path.abspath(__file__))
is_doc_dir = os.path.isdir(os.path.join(setup_dir, 'doc'))
install_obj = self.distribution.get_command_obj('install')
return (is_doc_dir and not self.no_doc and not install_obj.no_doc)
sub_commands = build.sub_commands + [('build_doc', with_doc)]
CMDCLASS['build'] = MyBuild
class MyInstall(install):
user_options = [('no-doc', None, "Don't build Spyder documentation")] \
+ install.user_options
def __init__(self, *args, **kwargs):
install.__init__(self, *args, **kwargs)
self.no_doc = False
CMDCLASS['install'] = MyInstall
class MyBuildDoc(setup_command.BuildDoc):
def run(self):
build = self.get_finalized_command('build')
sys.path.insert(0, os.path.abspath(build.build_lib))
dirname = self.distribution.get_command_obj('build').build_purelib
self.builder_target_dir = osp.join(dirname, 'spyder', 'doc')
if not osp.exists(self.builder_target_dir):
os.mkdir(self.builder_target_dir)
hhc_exe = get_html_help_exe()
self.builder = "html" if hhc_exe is None else "htmlhelp"
try:
setup_command.BuildDoc.run(self)
except UnicodeDecodeError:
print("ERROR: unable to build documentation because Sphinx "\
"do not handle source path with non-ASCII characters. "\
"Please try to move the source package to another "\
"location (path with *only* ASCII characters).",
file=sys.stderr)
sys.path.pop(0)
# Building chm doc, if HTML Help Workshop is installed
if hhc_exe is not None:
fname = osp.join(self.builder_target_dir, 'Spyderdoc.chm')
subprocess.call('"%s" %s' % (hhc_exe, fname), shell=True)
if osp.isfile(fname):
dest = osp.join(dirname, 'spyder')
try:
shutil.move(fname, dest)
except shutil.Error:
print("Unable to replace %s" % dest)
shutil.rmtree(self.builder_target_dir)
CMDCLASS['build_doc'] = MyBuildDoc
except ImportError:
print('WARNING: unable to build documentation because Sphinx '\
'is not installed', file=sys.stderr)
#==============================================================================
# Main scripts
#==============================================================================
# NOTE: the '[...]_win_post_install.py' script is installed even on non-Windows
# platforms due to a bug in pip installation process (see Issue 1158)
SCRIPTS = ['%s_win_post_install.py' % NAME]
if PY3 and sys.platform.startswith('linux'):
SCRIPTS.append('spyder3')
else:
SCRIPTS.append('spyder')
#==============================================================================
# Files added to the package
#==============================================================================
EXTLIST = ['.mo', '.svg', '.png', '.css', '.html', '.js', '.chm', '.ini',
'.txt', '.rst', '.qss', '.ttf', '.json']
if os.name == 'nt':
SCRIPTS += ['spyder.bat']
EXTLIST += ['.ico']
#==============================================================================
# Setup arguments
#==============================================================================
setup_args = dict(name=NAME,
version=__version__,
description='Scientific PYthon Development EnviRonment',
long_description=
"""Spyder is an interactive Python development environment providing
MATLAB-like features in a simple and light-weighted software.
It also provides ready-to-use pure-Python widgets to your PyQt5 or
PyQt4 application: source code editor with syntax highlighting and
code introspection/analysis features, NumPy array editor, dictionary
editor, Python console, etc.""",
download_url='%s/files/%s-%s.zip' % (__project_url__, NAME, __version__),
author="The Spyder Project Contributors",
url=__project_url__,
license='MIT',
keywords='PyQt5 PyQt4 editor shell console widgets IDE',
platforms=['any'],
packages=get_packages(),
package_data={LIBNAME: get_package_data(LIBNAME, EXTLIST),
'spyder_breakpoints': get_package_data('spyder_breakpoints', EXTLIST),
'spyder_profiler': get_package_data('spyder_profiler', EXTLIST),
'spyder_pylint': get_package_data('spyder_pylint', EXTLIST),
'spyder_io_dcm': get_package_data('spyder_io_dcm', EXTLIST),
'spyder_io_hdf5': get_package_data('spyder_io_hdf5', EXTLIST),
},
scripts=[osp.join('scripts', fname) for fname in SCRIPTS],
data_files=get_data_files(),
classifiers=['License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Widget Sets'],
cmdclass=CMDCLASS)
#==============================================================================
# Setuptools deps
#==============================================================================
if any(arg == 'bdist_wheel' for arg in sys.argv):
import setuptools # analysis:ignore
install_requires = [
'rope_py3k' if PY3 else 'rope>=0.9.4',
'jedi',
'pyflakes',
'pygments>=2.0',
'qtconsole>=4.2.0',
'nbconvert',
'sphinx',
'pep8',
'pylint',
'psutil',
'qtawesome>=0.4.1',
'qtpy>=1.1.0',
'pickleshare',
'pyzmq',
'chardet>=2.0.0',
'numpydoc',
]
if 'setuptools' in sys.modules:
setup_args['install_requires'] = install_requires
setup_args['entry_points'] = {
'gui_scripts': [
'spyder = spyder.app.start:main'
]
}
setup_args.pop('scripts', None)
#==============================================================================
# Main setup
#==============================================================================
setup(**setup_args)