forked from jupytercad/JupyterCAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (29 loc) · 855 Bytes
/
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
28
29
30
31
32
33
34
35
36
37
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.5.0,<2"]
[project]
name = "jupytercad-root"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
[tool.hatch.version]
path = "python/jupytercad/jupytercad/__init__.py"
[tool.jupyter-releaser]
skip = [ "check-python" ]
[tool.jupyter-releaser.options]
version-cmd = "python scripts/bump-version.py"
python_packages = [
"python/jupytercad:jupytercad",
"python/jupytercad_app:jupytercad_app",
"python/jupytercad_core:jupytercad_core",
"python/jupytercad_lab:jupytercad_lab",
]
[tool.jupyter-releaser.hooks]
before-bump-version = ["python -m pip install hatch 'jupyterlab>=4.0.0'"]
before-build-npm = [
"python -m pip install datamodel-code-generator",
"jlpm",
"jlpm build:prod",
]
[tool.check-wheel-contents]
ignore = ["W002"]