-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.63 KB
/
pyproject.toml
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
[tool.poetry]
name = "commitlint"
version = "1.3.0" # x-release-please-version
description = "commitlint is a pre-commit hook designed to lint your commit messages according to the Conventional Commits standard."
authors = [
"Ajesh Sen Thapa <[email protected]>",
"Sugat Bajracharya<[email protected]>"
]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/opensource-nepal/commitlint"
homepage = "https://github.com/opensource-nepal/commitlint"
keywords = [
"commitlint", "commit lint", "python commitlint", "conventional commit",
"conventional commit message", "python commit", "github actions", "pre-commit"
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only"
]
packages = [{ include = "commitlint", from = "src" }]
[tool.poetry.urls]
Changelog = "https://github.com/opensource-nepal/commitlint/blob/main/CHANGELOG.md"
Issues = "https://github.com/opensource-nepal/commitlint/issues"
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.group.dev.dependencies]
ruff = "0.9.6"
pre-commit = "4.1.0"
[tool.poetry.group.test.dependencies]
pytest = "7.3.2"
pytest-cov = "4.1.0"
[tool.poetry.scripts]
commitlint = "commitlint.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "-vvv"