-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 618 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 618 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
[project]
name = "sub-pre-commit"
version = "4.5.1"
description = "Run pre-commit on sub folders."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "David Danier", email = "david.danier@gmail.com"},
]
license = "MIT"
dependencies = [
"pre-commit==4.5.1",
"typer>=0.19.2",
]
[dependency-groups]
dev = [
"ruff>=0.13.2",
]
[project.scripts]
sub-pre-commit = 'sub_pre_commit.cli:run'
sub-pre-commit-run = 'sub_pre_commit.run:run'
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "sub_pre_commit"
module-root = ""