forked from jupyterlite/ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 940 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 940 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["hatchling", "hatch-nodejs-version>=0.3.2"]
build-backend = "hatchling.build"
[project]
name = "jupyterlite-ai-monorepo"
description = "Monorepo root for jupyterlite-ai"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
[tool.hatch.version]
source = "nodejs"
[tool.hatch.build.targets.wheel]
packages = []
[tool.hatch.build.targets.sdist]
include = []
[tool.jupyter-releaser.options]
version_cmd = "cd ../.. && python scripts/bump_version.py --skip-if-dirty"
python_packages = [
"python/jupyterlite-ai",
"python/jupyternaut-persona"
]
[tool.jupyter-releaser.hooks]
before-build-npm = [
"python -m pip install 'jupyterlab>=4.0.0,<5'",
"YARN_ENABLE_IMMUTABLE_INSTALLS=0 jlpm",
"jlpm build:prod"
]
before-build-python = ["jlpm clean:all"]
before-bump-version = [
"python -m pip install -U jupyterlab",
"jlpm"
]
[tool.check-wheel-contents]
ignore = ["W002"]