Skip to content

Commit

Permalink
Add data_files support (jupyterlab#3546)
Browse files Browse the repository at this point in the history
* Add data_files support

* Address review
  • Loading branch information
blink1073 authored Jan 6, 2018
1 parent 837df44 commit 256b3f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions jupyter-config/jupyter_notebook_config.d/jupyterlab.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"NotebookApp": {
"nbserver_extensions": {
"jupyterlab": true
}
}
}
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
data_files_spec = [
('share/jupyter/lab/static', '%s/static' % NAME, '**'),
('share/jupyter/lab/schemas', '%s/schemas' % NAME, '**'),
('share/jupyter/lab/themes', '%s/themes' % NAME, '**')
('share/jupyter/lab/themes', '%s/themes' % NAME, '**'),
('etc/jupyter/jupyter_notebook_config.d',
'jupyter-config/jupyter_notebook_config.d', 'jupyterlab.json'),
]

package_data_spec = dict()
Expand Down

0 comments on commit 256b3f7

Please sign in to comment.