-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.06 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
[build-system]
requires = [ "poetry-core>=1.9.1",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "wagtail-draftail-plugins"
version = "0.3.1"
description = "Commonly used extensions to Wagtail's Draftail editor."
authors = ["thelab <[email protected]>"]
readme = "README.rst"
homepage = "https://gitlab.com/thelabnyc/wagtail-draftail-plugins"
repository = "https://gitlab.com/thelabnyc/wagtail-draftail-plugins"
license = "ISC"
[[tool.poetry.packages]]
include = "wagtail_draftail_plugins"
from = "src"
[tool.poetry.dependencies]
python = "^3.10"
wagtail = ">=5.2.6"
[tool.poetry.group.dev.dependencies]
flake8 = ">=7.1.1"
tox = ">=4.23.2"
[tool.commitizen]
name = "cz_conventional_commits"
annotated_tag = true
gpg_sign = true
tag_format = "v$version"
update_changelog_on_bump = true
changelog_merge_prerelease = true
version_provider = "poetry"
version_scheme = "pep440"
version_files = [
"pyproject.toml:version",
]
pre_bump_hooks = [
"pre-commit run --all-files || true",
]
post_bump_hooks = [
"git push origin master $CZ_POST_CURRENT_TAG_VERSION"
]