-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.46 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
55
56
57
58
[tool.poetry]
name = "wagtail-spa-integration"
version = "3.1.0"
description = "Tools for using Wagtail API with JavaScript single page apps"
authors = ["thelab <[email protected]>"]
license = "ISC"
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Wagtail',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
"License :: OSI Approved :: Apache Software License",
]
packages = [
{ include = "wagtail_spa_integration", from = "src" }
]
[tool.poetry.urls]
"homepage" = "https://gitlab.com/thelabnyc/wagtail-spa-integration"
[tool.poetry.dependencies]
python = "^3.10"
wagtail = ">=5.2.5,<6.4"
Django = ">=4.2"
wagtail-headless-preview = "^0.8"
django-filter = "^23.3"
[tool.poetry.dev-dependencies]
django-cors-headers = "^4.6.0"
flake8 = ">=7.1.1"
tox = ">=4.23.2"
[build-system]
requires = [ "poetry-core>=1.9.1",]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
name = "cz_conventional_commits"
annotated_tag = true
gpg_sign = true
major_version_zero = 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"
]