-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
47 lines (37 loc) · 984 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
38
39
40
41
42
43
44
45
46
47
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.5.0,<2"]
[project]
name = "jupytergis-root"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
[tool.hatch.version]
path = "python/jupytergis/jupytergis/__init__.py"
[tool.jupyter-releaser]
skip = [ "check-python" ]
[tool.jupyter-releaser.options]
version-cmd = "python scripts/bump-version.py"
python_packages = [
"python/jupytergis:jupytergis",
"python/jupytergis_core:jupytergis_core",
"python/jupytergis_lab:jupytergis_lab",
"python/jupytergis_qgis:jupytergis_qgis",
]
[tool.jupyter-releaser.hooks]
before-bump-version = ["python -m pip install hatch 'jupyterlab>=4.0.0'"]
before-build-npm = [
"python -m pip install -r requirements-build.txt",
"jlpm",
"jlpm build:prod",
]
[tool.check-wheel-contents]
ignore = ["W002"]
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
]
ignore = ["E501", "E731"]