This repository has been archived on 2020-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-deploy/pyproject.toml

29 lines
561 B
TOML

[tool.poetry]
name = "ansible-dokku-deploy"
version = "0.0.1"
description = "Deploy applications on Dokku using Ansible."
authors = ["Luke Murphy <lukewm@riseup.net>"]
[tool.poetry.dependencies]
python = ">= 3.8.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^4.3.21"
flake8 = "^3.7.9"
[tool.black]
line-length = 80
target-version = ['py35', 'py36', 'py37']
skip-string-normalization = true
include = '\.pyi?$'
[tool.flake8]
max-line-length = 80
[tool.isort]
line_length = 80
multi_line_output = 3
skip = .venv
include_trailing_comma = True