-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.09 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
[build-system]
requires = [ "poetry-core>=1.9.1",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "wagtailcloudinary"
version = "2.2.0"
description = "Cloudinary support for Wagtail CMS"
authors = ["thelab <[email protected]>"]
readme = "README.md"
homepage = "https://gitlab.com/thelabnyc/wagtailcloudinary"
repository = "https://gitlab.com/thelabnyc/wagtailcloudinary"
license = "ISC"
[[tool.poetry.packages]]
include = "wagtailcloudinary"
from = "src"
[tool.poetry.dependencies]
python = "^3.10"
cloudinary = "~1.41.0"
python-dateutil = ">=2.9.0.post0"
wagtail = ">=5.2.6,<6.4"
[tool.poetry.group.dev.dependencies]
flake8 = ">=7.1.1"
tox = ">=4.23.2"
ipdb = "*"
[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"
]