-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.42 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
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "git-change-detection"
version = "0.2.3"
description = "Dependency-aware change detection for Git repositories."
authors = [
{name = "Bertrand Lanson", email = "bertrand.lanson@protonmail.com"},
]
maintainers = [
{name = "Bertrand Lanson", email = "bertrand.lanson@protonmail.com"}
]
keywords = [
"git",
"change-detection",
"dependency-graph",
"ci-cd",
"automation",
"devops",
"monorepo",
"ansible",
"pipeline",
]
readme = "README.md"
requires-python = ">=3.11,<3.14"
dependencies = [
"gitpython>=3.1.45,<4.0.0",
"typer>=0.24.0,<0.25.0",
"rich>=15.0.0,<15.1.0",
"pydantic>=2.11.7,<3.0.0",
"pyyaml>=6.0.2,<7.0.0",
"jsonschema>=4.26.0",
]
[dependency-groups]
test = [
"jsonschema>=4.26.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.0,<4.0.0",
"ruff>=0.14.10",
]
[project.scripts]
git-change-detection = "git_change_detection.cli:app"
[[tool.uv.index]]
name = "ednz-cloud"
url = "https://gitlab.ednz.fr/api/v4/projects/6/packages/pypi/simple/"
publish-url = "https://gitlab.ednz.fr/api/v4/projects/6/packages/pypi"
authenticate = "always"
explicit = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "uv"
tag_format = "v$version"
update_changelog_on_bump = true
version_files = ["pyproject.toml:^version"]