Skip to content

Commit 76cf60d

Browse files
authored
Merge pull request #9 from maartenbreddels/master
Implements what jupyter/notebook#3116 makes possible
2 parents 1ab434e + b4056ed commit 76cf60d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

{{cookiecutter.github_project_name}}/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
data_files_spec = [
4747
('share/jupyter/nbextensions/{{ cookiecutter.npm_package_name }}',
4848
pjoin(nb_path, '*.js*')),
49-
('share/jupyter/lab/extensions', lab_path)
49+
('share/jupyter/lab/extensions', lab_path),
50+
('etc/jupyter/nbconfig/notebook.d/' , '{{ cookiecutter.npm_package_name }}.json')
5051
]
5152

5253

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"load_extensions": {
3+
"{{ cookiecutter.npm_package_name }}/extension": true
4+
}
5+
}

0 commit comments

Comments
 (0)