Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #17 from martinRenou/reduce_sdist_size
Browse files Browse the repository at this point in the history
Reduce sdist size
  • Loading branch information
martinRenou committed May 24, 2022
2 parents 58c946f + 1caa8ef commit 280c7c6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Expand Up @@ -7,14 +7,15 @@ include install.json
include ts*.json
include yarn.lock
include webpack.config.js
include Dockerfile
recursive-include tests *.py

graft share

graft docs

# Javascript files
graft src
include src/*.ts
graft style
prune **/node_modules
prune lib
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -17,7 +17,11 @@
# Representative files that should exist after a successful build
ensured_targets = [
str(lab_path / "package.json"),
str(lab_path / "static/style.js")
str(lab_path / "static" / "python_data.js"),
str(lab_path / "static" / "python_data.data"),
str(lab_path / "static" / "xpython_wasm.js"),
str(lab_path / "static" / "xpython_wasm.wasm"),
str(lab_path / "static" / "style.js")
]

labext_name = "@jupyterlite/xeus-python-kernel"
Expand Down

0 comments on commit 280c7c6

Please sign in to comment.