Skip to content

Commit

Permalink
Merge pull request #206 from datalayer-externals/fix/find_package_data
Browse files Browse the repository at this point in the history
Add packages and package_data back in the setup_args
  • Loading branch information
echarles authored Jan 26, 2023
2 parents 9523021 + 4532c43 commit 36d7ff3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 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
6 changes: 0 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ requires = [
]
build-backend = "jupyter_packaging.build_api"

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

[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 36d7ff3

Please sign in to comment.