Skip to content

Commit 36d7ff3

Browse files
authored
Merge pull request #206 from datalayer-externals/fix/find_package_data
Add packages and package_data back in the setup_args
2 parents 9523021 + 4532c43 commit 36d7ff3

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

nbclassic/static/base/js/namespace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ define(function(){
7373
// tree
7474
jglobal('SessionList','tree/js/sessionlist');
7575

76-
Jupyter.version = "0.5.0";
76+
Jupyter.version = "0.6.0.dev0";
7777
Jupyter._target = '_blank';
7878

7979
return Jupyter;

pyproject.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ requires = [
66
]
77
build-backend = "jupyter_packaging.build_api"
88

9-
[tool.hatch.build]
10-
artifacts = [
11-
"nbclassic/static",
12-
"nbclassic/templates"
13-
]
14-
159
[tool.check-manifest]
1610
ignore = ["tbump.toml", ".*"]
1711

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@
6464

6565

6666
setup_args = dict(
67+
packages = find_packages(),
68+
package_data = find_package_data(),
6769
)
6870

6971
# Custom distutils/setuptools commands ----------

0 commit comments

Comments
 (0)