forked from voila-dashboards/voila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
403 lines (338 loc) · 14 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
from __future__ import print_function
from setuptools import setup, find_packages, Command
from setuptools.command.sdist import sdist
from setuptools.command.build_py import build_py
from setuptools.command.develop import develop
from setuptools.command.egg_info import egg_info
from setuptools.command.bdist_egg import bdist_egg
from io import BytesIO
from subprocess import check_call, CalledProcessError
import os
import shlex
import sys
try:
from urllib.request import urlopen
except ImportError:
from urllib import urlopen
from distutils import log
log.set_verbosity(log.DEBUG)
here = os.path.dirname(os.path.abspath(__file__))
node_root = os.path.join(here, 'js')
is_repo = os.path.exists(os.path.join(here, '.git'))
def in_read_the_docs():
return os.environ.get('READTHEDOCS') == 'True'
def js_first(command, strict=False):
"""decorator for building minified js/css prior to another command"""
class DecoratedCommand(command):
def run(self):
jsdeps = self.distribution.get_command_obj('jsdeps')
if not is_repo and all(os.path.exists(t) for t in jsdeps.targets):
# sdist, nothing to do
command.run(self)
return
try:
self.distribution.run_command('jsdeps')
except Exception as e:
missing = [t for t in jsdeps.targets if not os.path.exists(t)]
if strict or missing:
log.warn('rebuilding js and css failed')
if missing:
log.error('missing files: %s' % missing)
raise e
else:
log.warn('rebuilding js and css failed (not a problem)')
log.warn(str(e))
command.run(self)
update_package_data(self.distribution)
return DecoratedCommand
def update_package_data(distribution):
"""update package_data to catch changes during setup"""
build_py = distribution.get_command_obj('build_py')
# distribution.package_data = find_package_data()
# re-init build_py options which load package_data
build_py.finalize_options()
# TODO: remove this function once we drop Python2, see:
# https://github.com/voila-dashboards/voila/pull/322
# `shutils.which` function copied verbatim from the Python-3.3 source.
def which(cmd, mode=os.F_OK | os.X_OK, path=None):
"""Given a command, mode, and a PATH string, return the path which
conforms to the given mode on the PATH, or None if there is no such
file.
`mode` defaults to os.F_OK | os.X_OK. `path` defaults to the result
of os.environ.get("PATH"), or can be overridden with a custom search
path.
"""
# Check that a given file can be accessed with the correct mode.
# Additionally check that `file` is not a directory, as on Windows
# directories pass the os.access check.
def _access_check(fn, mode):
return (os.path.exists(fn) and os.access(fn, mode) and
not os.path.isdir(fn))
# Short circuit. If we're given a full path which matches the mode
# and it exists, we're done here.
if _access_check(cmd, mode):
return cmd
path = (path or os.environ.get("PATH", os.defpath)).split(os.pathsep)
if sys.platform == "win32":
# The current directory takes precedence on Windows.
if os.curdir not in path:
path.insert(0, os.curdir)
# PATHEXT is necessary to check on Windows.
pathext = os.environ.get("PATHEXT", "").split(os.pathsep)
# See if the given file matches any of the expected path extensions.
# This will allow us to short circuit when given "python.exe".
matches = [cmd for ext in pathext if cmd.lower().endswith(ext.lower())]
# If it does match, only test that one, otherwise we have to try
# others.
files = [cmd] if matches else [cmd + ext.lower() for ext in pathext]
else:
# On other platforms you don't have things like PATHEXT to tell you
# what file suffixes are executable, so just pass on cmd as-is.
files = [cmd]
seen = set()
for dir in path:
dir = os.path.normcase(dir)
if dir not in seen:
seen.add(dir)
for thefile in files:
name = os.path.join(dir, thefile)
if _access_check(name, mode):
return name
return None
# TODO: remove this function once we can depend on jupyter_packing, see:
# https://github.com/voila-dashboards/voila/pull/322
# `run` function copied from jupyter_packaging under the following license:
# -------------------------------------------------------------------------
#
# BSD 3-Clause License
#
# Copyright (c) 2017, Project Jupyter
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
def run(cmd, **kwargs):
"""Defaults to repo as cwd"""
kwargs.setdefault('cwd', here)
kwargs.setdefault('shell', os.name == 'nt')
if not isinstance(cmd, (list, tuple)):
cmd = shlex.split(cmd)
cmd_path = which(cmd[0])
if not cmd_path:
sys.exit("Aborting. Could not find cmd (%s) in path. "
"If command is not expected to be in user's path, "
"use an absolute path." % cmd[0])
cmd[0] = cmd_path
return check_call(cmd, **kwargs)
class NPM(Command):
description = 'install package.json dependencies using npm'
user_options = []
node_modules = os.path.join(node_root, 'node_modules')
template_root = os.path.join(here, 'share', 'jupyter', 'voila', 'templates', 'default', 'static')
targets = [
os.path.join(template_root, 'voila.js')
]
def initialize_options(self):
pass
def finalize_options(self):
pass
def has_npm(self):
try:
run(['npm', '--version'])
return True
except CalledProcessError:
return False
def should_run_npm_install(self):
return self.has_npm()
def run(self):
if in_read_the_docs():
log.warn(
"Inside readthedocs -- skipping building JS dependencies.")
return
has_npm = self.has_npm()
if not has_npm:
log.error("`npm` unavailable. If you're running this command using sudo, make sure `npm` is available to sudo")
if self.should_run_npm_install():
log.info('Installing build dependencies with npm. This may take a while...')
run(
['npm', 'install'],
cwd=node_root,
stdout=sys.stdout,
stderr=sys.stderr
)
os.utime(self.node_modules, None)
for t in self.targets:
if not os.path.exists(t):
msg = 'Missing file: %s' % t
if not has_npm:
msg += '\nnpm is required to build a development version'
raise ValueError(msg)
# update package data in case this created new files
self.distribution.data_files = get_data_files()
# update package data in case this created new files
update_package_data(self.distribution)
jupyterlab_css_version = '0.1.0'
css_url = "https://unpkg.com/@jupyterlab/nbconvert-css@%s/style/index.css" % jupyterlab_css_version
theme_light_version = '0.19.1'
theme_light_url = "https://unpkg.com/@jupyterlab/theme-light-extension@%s/static/embed.css" % theme_light_version
theme_dark_version = '0.19.1'
theme_dark_url = "https://unpkg.com/@jupyterlab/theme-dark-extension@%s/static/embed.css" % theme_dark_version
class FetchCSS(Command):
description = "Fetch Notebook CSS from CDN"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def _download(self, url):
try:
return urlopen(url).read()
except Exception as e:
if 'ssl' in str(e).lower():
try:
import pycurl # noqa
except ImportError:
print("Failed, try again after installing PycURL with `pip install pycurl` to avoid outdated SSL.", file=sys.stderr)
raise e
else:
print("Failed, trying again with PycURL to avoid outdated SSL.", file=sys.stderr)
return self._download_pycurl(url)
raise e
def _download_pycurl(self, url):
"""Download CSS with pycurl, in case of old SSL (e.g. Python < 2.7.9)."""
import pycurl
c = pycurl.Curl()
c.setopt(c.URL, url)
buf = BytesIO()
c.setopt(c.WRITEDATA, buf)
c.perform()
return buf.getvalue()
def run(self):
css_dest = os.path.join('share', 'jupyter', 'voila', 'templates', 'default', 'static', 'index.css')
theme_light_dest = os.path.join('share', 'jupyter', 'voila', 'templates', 'default', 'static', 'theme-light.css')
theme_dark_dest = os.path.join('share', 'jupyter', 'voila', 'templates', 'default', 'static', 'theme-dark.css')
try:
css = self._download(css_url)
theme_light = self._download(theme_light_url)
theme_dark = self._download(theme_dark_url)
except Exception:
if os.path.exists(css_dest) and os.path.exists(theme_light_dest) and os.path.exists(theme_dark_dest):
print("Already have CSS, moving on.")
else:
raise OSError("Need Notebook CSS to proceed.")
return
try:
os.mkdir(os.path.join('share', 'jupyter', 'voila', 'templates', 'default', 'static'))
except OSError: # Use FileExistsError from python 3.3 onward.
pass
with open(css_dest, 'wb+') as f:
f.write(css)
with open(theme_light_dest, 'wb+') as f:
f.write(theme_light)
with open(theme_dark_dest, 'wb+') as f:
f.write(theme_dark)
def css_first(command):
class CSSFirst(command):
def run(self):
self.distribution.run_command('css')
return command.run(self)
return CSSFirst
class BdistEggDisabled(bdist_egg):
"""Disabled version of bdist_egg
Prevents setup.py install performing setuptools' default easy_install,
which it should never ever do.
"""
def run(self):
sys.exit("Aborting implicit building of eggs. Use `pip install .` to install from source.")
cmdclass = {
'css': FetchCSS,
'jsdeps': NPM,
'build_py': css_first(js_first(build_py)),
'egg_info': css_first(js_first(egg_info)),
'sdist': css_first(js_first(sdist, strict=True)),
'develop': css_first(develop),
'bdist_egg': bdist_egg if 'bdist_egg' in sys.argv else BdistEggDisabled
}
version_ns = {}
with open(os.path.join(here, 'voila', '_version.py')) as f:
exec(f.read(), {}, version_ns)
def get_data_files():
"""Get the data files for the package.
"""
data_files = [
('etc/jupyter/jupyter_server_config.d', ['etc/jupyter/jupyter_server_config.d/voila.json']),
('etc/jupyter/jupyter_notebook_config.d', ['etc/jupyter/jupyter_notebook_config.d/voila.json']),
('etc/jupyter/nbconfig/notebook.d', ['etc/jupyter/nbconfig/notebook.d/voila.json']),
('share/jupyter/nbextensions/voila', ['voila/static/extension.js'])
]
# Add all the templates
for (dirpath, dirnames, filenames) in os.walk('share/jupyter/voila/templates/'):
if filenames:
data_files.append((dirpath, [os.path.join(dirpath, filename) for filename in filenames]))
return data_files
setup_args = {
'name': 'voila',
'version': version_ns['__version__'],
'description': 'Serving read-only live Jupyter notebooks',
'packages': find_packages(),
'zip_safe': False,
'data_files': get_data_files(),
'cmdclass': cmdclass,
'package_data': {
'voila': [
'static/*'
]
},
'entry_points': {
'console_scripts': [
'voila = voila.app:main'
]
},
'install_requires': [
'async_generator',
'jupyter_server>=0.1.0,<0.2.0',
'nbconvert>=5.5.0,<6',
'jupyterlab_pygments>=0.1.0,<0.2',
'pygments>=2.4.1,<3' # Explicitly requiring pygments which is a second-order dependency.
# An older versions is generally installed already and is otherwise not updated by pip.
],
'extras_require': {
'test': [
'mock',
'pytest<4',
'pytest-tornado',
'matplotlib',
'ipywidgets'
]
},
'author': 'Voila Development team',
'author_email': '[email protected]',
'keywords': [
'ipython',
'jupyter',
'widgets',
]
}
setup(**setup_args)