-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 775 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 775 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
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "cli-gen"
description = "Generate cpp-linter CLI doc from rust src."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Brendan Doherty", email = "2bndy5@gmail.com" },
]
classifiers = ["Private :: Do Not Upload"]
dynamic = ["version"]
[dependency-groups]
dev = [
"maturin==1.11.5",
"mypy==1.19.1",
"patchelf==0.17.2.2 ; sys_platform == 'linux'",
"ruff==0.14.13",
]
docs = [
"markdown-gfm-admonition==0.3.0",
"mkdocs==1.6.1",
"mkdocs-gen-files==0.6.0",
"mkdocs-include-markdown-plugin==7.2.0",
"mkdocs-material==9.7.1",
"pyyaml==6.0.3",
]
[tool.uv]
default-groups = "all"
reinstall-package = ["cli-gen"]