-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.42 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
51
52
53
54
[tool.poetry]
name = "f5-ps-ansible"
version = "1.3.0"
description = "This collection provides modules to configure F5 BIG-IP appliances running F5OS using the RESTCONF API interface."
authors = ["Simon Kowallik <github@simonkowallik.com>"]
license = "GPL3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
jmespath = { version = "^1.0.1", optional = true }
deepdiff = { version = "^8.0.1", optional = true }
[tool.poetry.extras]
all = ["jmespath", "deepdiff"]
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.1"
pytest = "^8.3.2"
ansible-core = "^2.17.7"
jmespath = "^1.0.1"
deepdiff = "^8.0.1"
bump-my-version = "^0.28.1"
[tool.bumpversion]
current_version = "1.3.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
ignore_missing_files = false
tag = false
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = true
commit = false
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
setup_hooks = []
pre_commit_hooks = []
post_commit_hooks = []
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.bumpversion.files]]
filename = "ansible_collections/f5_ps_ansible/f5os/galaxy.yml"
[[tool.bumpversion.files]]
filename = "pyproject.toml"