-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.14 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
[project]
name = "git-commit-guard"
dynamic = ["version"]
description = "Opinionated conventional commit message linter with imperative mood detection"
readme = "README.md"
requires-python = ">=3.12"
license = "GPL-2.0-only"
authors = [{ name = "Nerijus Bendžiūnas", email = "nerijus.bendziunas@gmail.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Environment :: Console",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"nltk>=3.9.4",
]
[project.scripts]
commit-guard = "git_commit_guard:main"
[project.urls]
Homepage = "https://github.com/benner/commit-guard"
Repository = "https://github.com/benner/commit-guard"
Issues = "https://github.com/benner/commit-guard/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
]