-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.02 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
[project]
name = "git-nearit"
version = "0.6.1"
description = "Git review tool for Gitea and GitLab, mimicking gerrit's git-review workflow"
readme = "README.md"
requires-python = ">=3.11,<3.15"
dependencies = [
"click>=8.0.0",
"gitpython>=3.1.45",
"questionary>=2.1.1",
"requests>=2.32.5",
"rich>=14.2.0",
]
[dependency-groups]
test = ["pytest>=9.0.2", "pytest-cov>=7.0.0", "ruff>=0.14.10"]
[project.scripts]
git-tea-review = "git_nearit.main:tea_review"
git-lab-review = "git_nearit.main:lab_review"
[[tool.uv.index]]
name = "ednz-cloud"
url = "https://gitlab.ednz.fr/api/v4/projects/5/packages/pypi/simple/"
publish-url = "https://gitlab.ednz.fr/api/v4/projects/5/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"]