Skip to content

Commit

Permalink
add pacakges and package_data back in the setup_args
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Jan 26, 2023
1 parent 9523021 commit 931298b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion nbclassic/static/base/js/namespace.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ define(function(){
// tree
jglobal('SessionList','tree/js/sessionlist');

Jupyter.version = "0.5.0";
Jupyter.version = "0.6.0.dev0";
Jupyter._target = '_blank';

return Jupyter;
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ requires = [
build-backend = "jupyter_packaging.build_api"

[tool.hatch.build]
artifacts = [
"nbclassic/static",
"nbclassic/templates"
]
artifacts = ["nbclassic/static"]

[tool.check-manifest]
ignore = ["tbump.toml", ".*"]
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@


setup_args = dict(
packages = find_packages(),
package_data = find_package_data(),
)

# Custom distutils/setuptools commands ----------
Expand Down

0 comments on commit 931298b

Please sign in to comment.