-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.07 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
[tool.poetry]
name = "sortiment"
version = "0.1.0"
description = ""
authors = ["Adam Zahradník <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.0.6"
gunicorn = "^23.0.0"
django-feather = "^0.3.0"
django-debug-toolbar = "^4.4.6"
django-htmx = "^1.17.3"
django-ipware = "^7.0.1"
django-widget-tweaks = "^1.5.0"
sentry-sdk = "^2.5.1"
django-stubs = "^5.0.2"
psycopg = {version = "^3.1.17", extras = ["binary"]}
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.0"
pre-commit = "^3.7.1"
bumpver = "^2023.1129"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "N", "DJ", "T20", "Q"]
[tool.bumpver]
current_version = "2025.1"
version_pattern = "YYYY.INC1"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"sortiment/sortiment/__init__.py" = [
'VERSION = "{version}"',
]