29 lines
561 B
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
|