forked from martin-saurer/jkernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·288 lines (255 loc) · 9.97 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
###############################################################################
#
# File: setup.py
# Author: Martin Saurer, 01.01.2018
# Description: Setup script for the J/Jupyter Notebook integration.
#
# License: GPL Version 3 (see gpl3.txt)
#
###############################################################################
###############################################################################
# Import modules
###############################################################################
import os
import sys
import shutil
###############################################################################
# Utility functions
###############################################################################
# Print exception info
def print_exception_info():
typ,val,trb = sys.exc_info()
fil = os.path.split(trb.tb_frame.f_code.co_filename)[1]
lin = trb.tb_lineno
est = ('Exception: ' + str(typ) + ': ' + str(val) + ' / in ' + str(fil) +
':' + str(lin))
print(val)
###############################################################################
# Check pre-requisites
###############################################################################
print('')
print('Check pre-requisites ...')
# Get site-packages directory
site_packages_dir = ''
for p in sys.path:
if p.endswith('site-packages'):
site_packages_dir = p
break
# Get anaconda/miniconda root directory
conda_root_dir = os.path.dirname(site_packages_dir)
conda_root_dir = os.path.dirname(conda_root_dir)
if os.name != 'nt':
conda_root_dir = os.path.dirname(conda_root_dir)
# Build jupyter kernels directory
jupyter_kernels_dir = os.path.join(conda_root_dir ,'share' )
jupyter_kernels_dir = os.path.join(jupyter_kernels_dir,'jupyter')
jupyter_kernels_dir = os.path.join(jupyter_kernels_dir,'kernels')
# Build notebook syntax directory
notebook_syntax_dir = os.path.join(site_packages_dir ,'notebook' )
notebook_syntax_dir = os.path.join(notebook_syntax_dir,'static' )
notebook_syntax_dir = os.path.join(notebook_syntax_dir,'components')
notebook_syntax_dir = os.path.join(notebook_syntax_dir,'codemirror')
notebook_syntax_dir = os.path.join(notebook_syntax_dir,'mode' )
# Check accessibility
ado = True
if os.access(conda_root_dir,os.W_OK):
crd = ' OK.'
else:
crd = ' MISSING or NOT writeable.'
ado = False
if os.access(site_packages_dir,os.W_OK):
spd = ' OK.'
else:
spd = ' MISSING or NOT writeable.'
ado = False
if os.access(notebook_syntax_dir,os.W_OK):
nsd = ' OK.'
else:
nsd = ' MISSING or NOT writeable.'
ado = False
if os.access(jupyter_kernels_dir,os.W_OK):
jkd = ' OK.'
else:
jkd = ' MISSING or NOT writeable.'
ado = False
# Print directories
print('Anaconda/Miniconda root directory ... : ' + conda_root_dir + crd)
print('Site Packages directory ............. : ' + site_packages_dir + spd)
print('Jupyter Notebook syntax directory ... : ' + notebook_syntax_dir + nsd)
print('Jupyter Kernels directory ........... : ' + jupyter_kernels_dir + jkd)
# Print check results
if ado == True:
print('ALL destination directories are OK.')
print('Done.')
else:
print('ERROR: One or more destination directories are not accessible !!!')
sys.exit(0)
###############################################################################
# Build source files
###############################################################################
src_root_dir = os.path.dirname(sys.argv[0])
src_kernel_dir = os.path.join(src_root_dir,'jkernel')
src_kernel_files = []
src_kernel_files.append(os.path.join(src_kernel_dir,'__init__.py'))
src_kernel_files.append(os.path.join(src_kernel_dir,'jinter.py' ))
src_kernel_files.append(os.path.join(src_kernel_dir,'jkernel.py' ))
src_kernel_definition_dir = os.path.join(src_root_dir,'kernel_definition')
src_kernel_definition_dir = os.path.join(src_kernel_definition_dir,'jkernel')
src_kernel_definition_files = []
src_kernel_definition_files.append(os.path.join(src_kernel_definition_dir,'kernel.json'))
src_kernel_definition_files.append(os.path.join(src_kernel_definition_dir,'logo-32x32.png'))
src_kernel_definition_files.append(os.path.join(src_kernel_definition_dir,'logo-64x64.png'))
src_syntax_dir = os.path.join(src_root_dir,'syntax')
src_syntax_dir = os.path.join(src_syntax_dir,'J')
src_syntax_files = []
src_syntax_files.append(os.path.join(src_syntax_dir,'J.js'))
###############################################################################
# Parse arguments and invoke action
###############################################################################
parm = ''
if len(sys.argv) > 1: parm = sys.argv[1].lower().strip()
mode = ''
if parm == 'install': mode = parm
if parm == 'uninstall': mode = parm
if parm == 'check': mode = parm
if mode == '':
print('')
print('Usage: setup.py install|uninstall|check')
print('')
sys.exit(0)
if sys.argv[1].lower().strip() == 'install':
print('')
print('Perform installation ...')
print('Copy: ' + src_kernel_dir + ' => ' + os.path.join(site_packages_dir,'jkernel'))
try:
shutil.copytree(src_kernel_dir,os.path.join(site_packages_dir,'jkernel'))
except:
print_exception_info()
print('Copy: ' + src_kernel_definition_dir + ' => ' + os.path.join(jupyter_kernels_dir,'jkernel'))
try:
shutil.copytree(src_kernel_definition_dir,os.path.join(jupyter_kernels_dir,'jkernel'))
except:
print_exception_info()
print('Copy: ' + src_syntax_dir + ' => ' + os.path.join(notebook_syntax_dir,'J'))
try:
shutil.copytree(src_syntax_dir,os.path.join(notebook_syntax_dir,'J'))
except:
print_exception_info()
print('Done.')
print('')
print('###################################################################')
print('# PLEASE DO NOT FORGET TO SET THE FOLLOWING ENVIRONMENT VARIABLES #')
print('# #')
print('# Linux or MacOS: ~/.bashrc or ~/.bash_profile #')
print('# -------------------------------------------- #')
print('# export J_INSTALLATION_FOLDER="<J installation folder>" #')
print('# export J_BIN_FOLDER="<J binaries folder>" #')
print('# #')
print('# Windows: #')
print('# -------- #')
print('# SET J_INSTALLATION_FOLDER=<J installation folder> #')
print('# SET J_BIN_FOLDER=<J binaries folder> #')
print('# ... or via Control Panel ... #')
print('###################################################################')
print('')
sys.exit(0)
if sys.argv[1].lower().strip() == 'uninstall':
print('')
print('Perform un-installation ...')
print('Remove: ' + os.path.join(site_packages_dir,'jkernel'))
try:
shutil.rmtree(os.path.join(site_packages_dir,'jkernel'))
except:
print_exception_info()
print('Remove: ' + os.path.join(jupyter_kernels_dir,'jkernel'))
try:
shutil.rmtree(os.path.join(jupyter_kernels_dir,'jkernel'))
except:
print_exception_info()
print('Remove: ' + os.path.join(notebook_syntax_dir,'J'))
try:
shutil.rmtree(os.path.join(notebook_syntax_dir,'J'))
except:
print_exception_info()
print('Done.')
sys.exit(0)
if sys.argv[1].lower().strip() == 'check':
print('')
print('Checking current installation ...')
all_ok = True
pth = os.path.join(site_packages_dir,'jkernel')
if os.access(pth,os.R_OK):
print(pth + ' => OK')
else:
print(pth + ' => MISSING')
all_ok = False
for f in src_kernel_files:
fn = os.path.basename(f)
df = os.path.join(pth,fn)
if os.access(df,os.R_OK):
print(df + ' => OK')
else:
print(df + ' => MISSING')
all_ok = False
pth = os.path.join(jupyter_kernels_dir,'jkernel')
if os.access(pth,os.R_OK):
print(pth + ' => OK')
else:
print(pth + ' => MISSING')
all_ok = False
for f in src_kernel_definition_files:
fn = os.path.basename(f)
df = os.path.join(pth,fn)
if os.access(df,os.R_OK):
print(df + ' => OK')
else:
print(df + ' => MISSING')
all_ok = False
pth = os.path.join(notebook_syntax_dir,'J')
if os.access(pth,os.R_OK):
print(pth + ' => OK')
else:
print(pth + ' => MISSING')
all_ok = False
for f in src_syntax_files:
fn = os.path.basename(f)
df = os.path.join(pth,fn)
if os.access(df,os.R_OK):
print(df + ' => OK')
else:
print(df + ' => MISSING')
all_ok = False
pth = os.getenv('J_INSTALLATION_FOLDER')
if pth is None: pth = ''
if pth != '':
print('Environment variable: J_INSTALLATION_FOLDER => OK')
if os.access(pth,os.R_OK):
print(pth + ' => OK')
else:
print(pth + ' => MISSING')
all_ok = False
else:
print('Environment variable: J_INSTALLATION_FOLDER => MISSING')
all_ok = False
pth = os.getenv('J_BIN_FOLDER')
if pth is None: pth = ''
if pth != '':
print('Environment variable: J_BIN_FOLDER => OK')
if os.access(pth,os.R_OK):
print(pth + ' => OK')
else:
print(pth + ' => MISSING')
all_ok = False
else:
print('Environment variable: J_BIN_FOLDER => MISSING')
all_ok = False
# Print check results
if all_ok == True:
print('ALL checks passed.')
print('Done.')
else:
print('ERROR: In one or more of the installation components !!!')
sys.exit(0)
###############################################################################
# EOF
###############################################################################