Use simpler file structure

This commit is contained in:
Sonny Bakker 2021-01-29 21:47:47 +01:00
parent 633a61b6f2
commit af7211830d
24 changed files with 180 additions and 225 deletions

19
templates/pyproject.j2 Normal file
View file

@ -0,0 +1,19 @@
# {{ ansible_managed }} {{ ansible_date_time.time }} {{ ansible_date_time.date }}
[tool.poetry]
name = "coc"
version = "0.1.0"
description = ""
authors = ["Sonny Bakker <sonny871@hotmail.com>"]
[tool.poetry.dependencies]
python = "^3.7"
black = "^19.10b0"
pylint = "^2.5.3"
autoflake = "^1.3.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"