We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20cd266 commit 95232c2Copy full SHA for 95232c2
jupyter-config/notebook.d/jupyter-threejs.json
@@ -0,0 +1,5 @@
1
+{
2
+ "load_extensions": {
3
+ "jupyter-threejs/extension": true
4
+ }
5
+}
setup.py
@@ -31,11 +31,17 @@
31
'js',
32
data_files_spec=[
33
('share/jupyter/nbextensions/jupyter-threejs',
34
- name + '/static', '*.js'),
+ name + '/static',
35
+ '*.js'),
36
- name + '/static', '*.js.map'),
37
38
+ '*.js.map'),
39
('share/jupyter/lab/extensions',
- 'js/lab-dist', 'jupyter-threejs-*.tgz'),
40
+ 'js/lab-dist',
41
+ 'jupyter-threejs-*.tgz'),
42
+ ('etc/jupyter/nbconfig',
43
+ 'jupyter-config',
44
+ '**/*.json'),
45
],
46
)
47
cmdclass['js'] = combine_commands(
0 commit comments