28 lines
679 B
TOML
28 lines
679 B
TOML
[tool.poetry]
|
|
name = "digitalocean"
|
|
version = "0.0.1"
|
|
description = "Ansible Community DigitalOcean Collection"
|
|
authors = ["Mark Mercado <mmercado@digitalocean.com>"]
|
|
license = "GPL-3.0"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "~3.9"
|
|
ansible-core = "^2.15.9"
|
|
boto3 = "^1.28.16"
|
|
jmespath = "^1.0.1"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ansible-lint = { version = "^6.16.2", markers = "platform_system != 'Windows'" }
|
|
black = "^24.3.0"
|
|
pre-commit = "^3.3.2"
|
|
pylint = "^2.17.4"
|
|
pytest = "^7.3.1"
|
|
antsibull-changelog = "^0.22.0"
|
|
antsibull-docs = "^2.3.1"
|
|
pytest-mock = "^3.11.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|