-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
154 lines (134 loc) · 4.81 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
#!/usr/bin/env python
# coding: utf-8
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified LGPLv2.1 License.
from __future__ import print_function
from glob import glob
import os, json
from os.path import join as pjoin
from setuptools import setup, find_packages
from setuptools.command.build_ext import build_ext
import shutil
from jupyter_packaging import (
create_cmdclass,
install_npm,
ensure_targets,
combine_commands,
)
HERE = os.path.dirname(os.path.abspath(__file__))
# The name of the project
name = 'webgui_jupyter_widgets'
# Get the version
version = json.load(open('package.json'))['version']
webgui_dir = os.path.join(HERE,"webgui")
webgui_version = json.load(open('webgui/package.json'))['version']
# Representative files that should exist after a successful build
jstargets = [
pjoin(HERE, name, 'nbextension', 'index.js'),
pjoin(HERE, 'lib', 'plugin.js'),
]
package_data_spec = {
name: [
'nbextension/**js*',
'labextension/**',
'js/webgui_jupyter_widgets.js',
'js/webgui.js'
]
}
data_files_spec = [
# ('share/jupyter/nbconvert/templates/webgui', 'template', '**'),
('share/jupyter/nbextensions/webgui_jupyter_widgets', 'webgui_jupyter_widgets/nbextension', '**'),
('share/jupyter/labextensions/webgui_jupyter_widgets', 'webgui_jupyter_widgets/labextension', '**'),
('share/jupyter/labextensions/webgui_jupyter_widgets', '.', 'install.json'),
('etc/jupyter/nbconfig/notebook.d', '.', 'webgui_jupyter_widgets.json'),
]
class generate_webgui_js(build_ext):
def run(self):
open('webgui_jupyter_widgets/js/__init__.py','w').write(
"""version = "{}"
code = open(__file__.replace("__init__.py", "webgui.js")).read()
widget_code = open(__file__.replace("__init__.py", "webgui_jupyter_widgets.js")).read()
""".format(webgui_version))
# open('template/index.html.j2','w').write(
#"""{%- extends 'classic/index.html.j2' -%}
#
#{%- block html_head_js -%}
# {{ super() }}
# <script>
#{{{webgui_code}}}
#
# </script>
#{%- endblock html_head_js -%}
#""".replace("{{{webgui_code}}}", webgui_js_code))
join = os.path.join
src_file = join(webgui_dir, 'dist', 'webgui.js')
shutil.copy( src_file, join(HERE, 'webgui_jupyter_widgets', 'nbextension'))
shutil.copy( src_file, join(HERE, 'webgui_jupyter_widgets', 'js'))
shutil.copy( join(HERE, 'dist', 'index.js'), join(HERE, 'webgui_jupyter_widgets', 'js', 'webgui_jupyter_widgets.js'))
is_dev_build = bool(os.environ.get('DEV_BUILD', False))
cmdclass = create_cmdclass('jsdeps', package_data_spec=package_data_spec,
data_files_spec=data_files_spec)
cmdclass['jsdeps'] = combine_commands(
install_npm(webgui_dir, build_cmd='build' if not is_dev_build else 'build-dev'),
install_npm(HERE, build_cmd='build:prod' if not is_dev_build else 'build'),
ensure_targets(jstargets),
generate_webgui_js,
)
setup_args = dict(
name = name,
description = 'Jupyter widgets library for webgui js visualization library',
version = version,
scripts = glob(pjoin('scripts', '*')),
cmdclass = cmdclass,
packages = find_packages(),
package_dir = {"webgui_jupyter_widgets": "webgui_jupyter_widgets"},
author = 'CERBSim',
author_email = '[email protected]',
url = 'https://github.com/CERBSim/webgui_jupyter_widgets',
license_files = ['LGPLv2.1'],
platforms = "Linux, Mac OS X, Windows",
keywords = ['Jupyter', 'Widgets', 'IPython'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Jupyter',
],
include_package_data = True,
python_requires=">=3.6",
install_requires = [
'ipywidgets>=7.0.0',
],
extras_require = {
'test': [
'pytest>=4.6',
'pytest-cov',
'nbval',
],
'examples': [
# Any requirements for the examples to run
],
'docs': [
'jupyter_sphinx',
'nbsphinx',
'nbsphinx-link',
'pytest_check_links',
'pypandoc',
'recommonmark',
'sphinx>=1.5',
'sphinx_rtd_theme',
],
},
entry_points = {
},
)
if __name__ == '__main__':
setup(**setup_args)