-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (38 loc) · 889 Bytes
/
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
[tool.poetry]
name = "parent"
version = "24.1"
description = ""
authors = ["Adam Zahradník <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
landlock = "^1.0.0.dev4"
python-prctl = "^1.8.1"
[tool.poetry.scripts]
parent = "parent:run"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
ruff = "^0.0.289"
pre-commit = "^3.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "N", "Q"]
[tool.bumpver]
current_version = "24.1"
version_pattern = "0Y.INC1"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"parent.py" = [
'VERSION = "{version}"'
]