Skip to content

Commit 47140e7

Browse files
authored
fix: Update pyproject.toml to move deps to optional
1 parent 73af16b commit 47140e7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ classifiers = [
3232
"Topic :: Software Development :: Build Tools",
3333
]
3434
dependencies = [
35-
"clang-format==20.1.7",
36-
"clang-tidy==20.1.0",
3735
"tomli>=1.1.0; python_version < '3.11'",
3836
]
3937
dynamic = ["version"]
@@ -47,6 +45,11 @@ source = "https://github.com/cpp-linter/cpp-linter-hooks"
4745
tracker = "https://github.com/cpp-linter/cpp-linter-hooks/issues"
4846

4947
[project.optional-dependencies]
48+
tools = [
49+
"clang-format==20.1.7",
50+
"clang-tidy==20.1.0",
51+
]
52+
5053
dev = [
5154
"coverage",
5255
"pre-commit",

0 commit comments

Comments
 (0)