-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 945 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
[tool.poetry]
name = "huyz.general"
version = "1.1.1"
description = "Ansible collection of roles for general use"
authors = ["huyz"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11.5"
ansible = "^11.1.0"
# For use of `manifest` in galaxy.xml
distlib = "^0.3.8"
[tool.poetry.group.dev.dependencies]
antsibull-changelog = "^0.30.0"
pre-commit = "^4.0.1"
# Avoid the dumb, irrelevant ansible-lint error
# https://github.com/ansible/ansible-lint/discussions/2820
ansible-lint = { version = "^24.7.0", markers = "platform_system != 'Windows'" }
# molecule >= 5.0.1 to avoid ansible-compat issue with 4.x
# https://github.com/ansible-community/molecule/issues/3903
molecule = { version = "^24.9.0" }
molecule-plugins = { extras = ["docker"], version = "^23.6.0" }
pytest-testinfra = "^10.1.1"
pytest-subtests = "^0.14.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"