-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
36 lines (31 loc) · 1 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
[tool.poetry]
name = "django-annotator"
packages = [
{ include = "annotator" },
]
version = "2.2.9"
description = "Implementation of annotatorjs's Storage/Search API."
authors = ["PsypherPunk <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
djangorestframework = "^3.15.2"
drf-writable-nested = "^0.7.0"
django-filter = "^24.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
commitizen = "^3.28.0"
[tool.commitizen]
version = "2.2.9"
bump_message = "bump: version $current_version → $new_version [skip ci]"
version_files = [
"pwny/__init__.py:^__version__",
"pyproject.toml:^version",
]
[tool.commitizen.customize]
bump_pattern = '^(BREAKING CHANGE|build|chore|docs|feat|fix|refactor|test)(\(.+\))?(!)?'
bump_map = {"!" = "MAJOR", build = "PATCH", chore = "PATCH", docs = "PATCH", feat = "MINOR", fix = "PATCH", refactor = "PATCH", test = "PATCH" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"