-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.05 KB
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
48
49
50
51
52
53
[project]
name = "jsmn-tools"
version = "0.19.0"
description = ""
requires-python = ">=3.12"
dependencies = [
"jinja2>=3.1.6",
"jsonschema>=4.23",
"referencing>=0.35",
"ruamel-yaml>=0.19.1",
]
[project.scripts]
jsmn = "jsmn_tools.cli:main"
[project.optional-dependencies]
zephyr = ["west"]
[dependency-groups]
dev = [
"basedpyright>=1.22.0",
"clang-format>=21.1.8",
"cmake-format[yaml]>=0.6.13",
"import-linter>=2.10",
"meson>=1.10.0",
"mypy>=1.13.0",
"pyright>=1.1.408",
"pytest>=9.0.2",
"pytest-cov>=6.0",
"syrupy>=4.0",
"radon>=6.0.1",
"ruff>=0.8.0",
]
docs = [
"sphinx>=8.0",
"furo>=2024.8.6",
"myst-parser>=4.0",
"sphinx-design>=0.6",
"sphinx-copybutton>=0.5",
"sphinxext-opengraph>=0.9",
"sphinxcontrib-mermaid>=1.0",
"matplotlib>=3.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["codegen/src/jsmn_tools"]
[tool.hatch.build.targets.wheel.force-include]
"cmake/modules" = "jsmn_tools/cmake"