-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
27 lines (21 loc) · 1.07 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[build-system]
requires = ["jupyter_packaging~=0.10,<2", "jupyterlab~=3.1", "empack>=2.0.9,<3"]
build-backend = "jupyter_packaging.build_api"
[tool.jupyter-packaging.options]
skip-if-exists = ["share/jupyter/labextensions/@jupyterlite/xeus-nelson-kernel/static/style.js"]
ensured-targets = ["share/jupyter/labextensions/@jupyterlite/xeus-nelson-kernel/static/style.js", "share/jupyter/labextensions/@jupyterlite/xeus-nelson-kernel/package.json"]
[tool.jupyter-packaging.builder]
factory = "jupyter_packaging.npm_builder"
[tool.jupyter-packaging.build-args]
build_cmd = "build:prod"
npm = ["jlpm"]
[tool.check-manifest]
ignore = ["share/jupyter/labextensions/@jupyterlite/xeus-nelson-kernel/**", "yarn.lock", ".*", "package-lock.json", "src/xnelson_wasm.js", "src/xnelson_wasm.wasm", "src/*.data", "src/*.js", "src/worker.ts", "src/web_worker_kernel.ts", "*.sh"]
[tool.jupyter-releaser.options]
skip = ["check-links"]
[tool.jupyter-releaser.hooks]
before-build-npm = [
"python -m pip install jupyterlab~=3.1 empack~=2.0 jupyter_packaging~=0.10",
"jlpm",
"jlpm build:prod",
]