-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 1.33 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
[build-system]
requires = [ "poetry-core>=1.9.1",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-oscar-reports"
version = "2.2.3"
description = "An extension on-top of django-oscar that improves the Oscar Dashboard's report generation system"
authors = ["thelab <[email protected]>"]
readme = "README.rst"
homepage = "https://gitlab.com/thelabnyc/django-oscar/django-oscar-reports"
repository = "https://gitlab.com/thelabnyc/django-oscar/django-oscar-reports"
license = "ISC"
[[tool.poetry.packages]]
include = "oscarreports"
from = "src"
[tool.poetry.dependencies]
python = "^3.10"
celery = ">=5.4.0"
Django = ">=4.2"
django-oscar = "3.2.5"
[tool.poetry.group.dev.dependencies]
coverage = "^7.6.7"
flake8 = "^7.1.1"
freezegun = "^1.5.1"
psycopg2-binary = "^2.9.10"
PyYAML = "^6.0.2"
sorl-thumbnail = "^12.11.0"
tox = "^4.23.2"
unittest-xml-reporting = "^3.2.0"
django-webtest = "^1.9.12"
WebTest = "^3.0.1"
[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"
]