forked from Tecnativa/doodba-copier-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 862 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
authors = ["Jairo Llopis <jairo.llopis@tecnativa.com>"]
description = "Copier template to maintain Doodba integration projects"
license = "BSL-1.0"
name = "doodba-copier-template"
version = "0.1.0"
[tool.poetry.dependencies]
# TODO Use versioned copier after v3.0.0 is released
# HACK https://github.com/pykong/copier/issues/112
copier = "^3.0.6"
plumbum = "^1.6.8"
python = "^3.6"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
docker-compose = "^1.25.4"
flake8 = "^3.7.9"
invoke = "^1.4.1"
pre-commit = "^2.1.0"
pylint = "^2.4.4"
pytest = "^5.3.5"
pytest-xdist = "^1.31.0"
[tool.isort]
# See https://github.com/psf/black
combine_as_imports = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
use_parentheses = true
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]