-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (52 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
64 lines (52 loc) · 1.44 KB
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
59
60
61
62
63
64
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wagtailcloudinary"
version = "2.3.0"
description = "Cloudinary support for Wagtail CMS"
readme = "README.md"
dependencies = [
"cloudinary (>=1.44.2,<1.45)",
"python-dateutil (>=2.9.0.post0)",
"wagtail (>=7.0)",
]
requires-python = ">=3.11"
[project.license]
text = "ISC"
[[project.authors]]
name = "thelab"
email = "thelabdev@thelab.co"
[project.urls]
Homepage = "https://gitlab.com/thelabnyc/wagtailcloudinary"
Repository = "https://gitlab.com/thelabnyc/wagtailcloudinary"
[dependency-groups]
dev = ["ruff (>=0.15.12)", "tox==4.53.0", "ipdb (==0.13.13)", "tox-uv>=1.35.1"]
[tool.hatch.build.targets.wheel]
packages = ["wagtailcloudinary"]
[[tool.uv.index]]
name = "thelabnyc"
url = "https://gitlab.com/api/v4/groups/269576/-/packages/pypi/simple"
explicit = true
[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 = "pep621"
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"]
[tool.isort]
profile = "black"
from_first = true
[tool.ruff]
line-length = 160
exclude = ["migrations"]
[tool.ruff.lint]
ignore = ["E402", "E203"]
[tool.ruff.lint.isort]
from-first = true