Skip to content

Commit 806261a

Browse files
committed
more lab3
1 parent a9374b2 commit 806261a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"packageManager": "python",
3+
"packageName": "{{ cookiecutter.python_package_name }}",
4+
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package {{ cookiecutter.python_package_name }}"
5+
}

{{cookiecutter.github_project_name}}/setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
package_data_spec = {
4141
name: [
42-
'nbextension/static/*.*js*',
42+
'nbextension/static/**js*',
4343
# 'labextension/*.tgz',
4444
'labextension/*'
4545
]
@@ -50,7 +50,8 @@
5050
data_files_spec = [
5151
('share/jupyter/nbextensions/{{ cookiecutter.python_package_name}}',
5252
nb_path, '*.js*'),
53-
("share/jupyter/labextensions/%s" % labext_name, lab3_path, "*.*"),
53+
("share/jupyter/labextensions/%s" % labext_name, lab3_path, "**"),
54+
("share/jupyter/labextensions/%s" % labext_name, str(HERE), "install.json"),
5455
# ('share/jupyter/lab/extensions', lab_path, '*.tgz'),
5556
('etc/jupyter/nbconfig/notebook.d' , HERE, '{{ cookiecutter.python_package_name}}.json')
5657
]

0 commit comments

Comments
 (0)