-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.51 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
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wagtail-stubs"
version = "7.3.0b1"
description = "PEP 561 type stubs for wagtail"
readme = "README.md"
license = { text = "ISC" }
dependencies = [
"wagtail>=7.3,<7.4",
"django-stubs>=5.2.0",
"django-modelcluster-stubs>=6.4.0a1",
"django-treebeard-stubs>=4.8.3",
"django-permissionedforms-stubs>=0.1.0",
"telepath-stubs>=0.3.0a1",
"laces-stubs>=0.1.0a1",
"willow-stubs>=1.13.0a1",
]
requires-python = ">=3.12"
[[project.authors]]
name = "thelab"
email = "thelabdev@thelab.co"
[project.urls]
Homepage = "https://gitlab.com/thelabnyc/stubs/wagtail-stubs"
Repository = "https://gitlab.com/thelabnyc/stubs/wagtail-stubs"
[dependency-groups]
dev = [
"mypy>=1.19.1",
"django-stubs>=5.2.9",
"pytest>=8.0",
"pytest-mypy-plugins>=3.0",
"tox>=4.49.0",
"tox-uv>=1.33.1",
"ruff>=0.15.5",
]
[tool.hatch.build.targets.wheel]
packages = ["wagtail-stubs"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "PYI"]
[tool.ruff.lint.isort]
from-first = true
[tool.commitizen]
name = "cz_conventional_commits"
annotated_tag = true
gpg_sign = false
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", "uv build"]
post_bump_hooks = ["git push origin HEAD $CZ_POST_CURRENT_TAG_VERSION"]