Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 48eaf2c

Browse files
committed
Remove static directory for nbextension
1 parent d3832d8 commit 48eaf2c

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
recursive-include jupyter_dash/nbextension *.json
2-
recursive-include jupyter_dash/nbextension/static *.js
2+
recursive-include jupyter_dash/nbextension *.js

jupyter_dash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def _jupyter_nbextension_paths():
66
return [
77
{
88
"section": "notebook",
9-
"src": "nbextension/static",
9+
"src": "nbextension",
1010
"dest": "jupyter_dash",
1111
"require": "jupyter_dash/main",
1212
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
data_files=[
1212
# like `jupyter nbextension install --sys-prefix`
1313
("share/jupyter/nbextensions/jupyter_dash", [
14-
"jupyter_dash/nbextension/static/main.js",
14+
"jupyter_dash/nbextension/main.js",
1515
]),
1616
# like `jupyter nbextension enable --sys-prefix`
1717
("etc/jupyter/nbconfig/notebook.d", [

0 commit comments

Comments
 (0)