-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 985 Bytes
/
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
[tool.poetry]
name = "commitizen-lrplugin"
version = "0.1.1"
description = "Commitizen version provider for Lua Lightroom plug-ins."
authors = ["Karsten Silkenbäumer <[email protected]>"]
readme = "README.md"
packages = [{include = "commitizen_lrplugin", from = "src"}]
[tool.poetry.plugins."commitizen.provider"]
commitizen-lrplugin = "commitizen_lrplugin.lrplugin_version_provider:LRPluginVersionProvider"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
commitizen = "^3.22.0"
pytest = "^8.1.1"
pytest-watcher = "^0.4.2"
pytest-mock = "^3.14.0"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_provider = "poetry"
update_changelog_on_bump = true
major_version_zero = true
change_type_map = { feat = "Features", fix = "Bug fixes" }
[tool.pytest-watcher]
now = true
clear = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"