Skip to content

Commit

Permalink
nb
Browse files Browse the repository at this point in the history
  • Loading branch information
hainm committed Nov 25, 2024
1 parent f8215fb commit f04e41b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def update_package_data(distribution):
# The name of the project
name = "nglview-js-widgets"
lab_path = (HERE / "nglview" / "staticlab")
nb_path = (HERE / "nglview" / "static")
package_data_spec = {
name: ["*"],
}
Expand All @@ -36,7 +37,7 @@ def update_package_data(distribution):
data_files_spec = [
("share/jupyter/labextensions/%s" % labext_name, str(lab_path), "**"),
("share/jupyter/labextensions/%s" % labext_name, str(HERE), "install.json"),
("share/jupyter/nbextensions/%s" % labext_name, str(lab_path), "**"),
("share/jupyter/nbextensions/%s" % labext_name, str(nb_path), "**"),
("etc/jupyter/nbconfig/notebook.d", str(HERE), "nglview-js-widgets.json"),
]

Expand Down

0 comments on commit f04e41b

Please sign in to comment.