Convert from pipenv to poetry

This commit is contained in:
2020-02-11 23:15:34 -05:00
parent 27dd062900
commit e81fc750cb
6 changed files with 444 additions and 229 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[tool.poetry]
name = "omni-ansible"
version = "0.0.0"
description = "Network deployment procedures and configuration state"
authors = ["Ethan Paul <e@enp.one>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
ansible = "^2.9.4"
paramiko = "^2.7.1"
jinja2 = "^2.11.1"
[tool.poetry.dev-dependencies]
ansible-lint = "^4.2.0"
yamllint = "^1.20.0"
ansible-toolbox = "^0.3"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"