forked from Tecnativa/doodba-copier-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 778 Bytes
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
[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]
copier = "^5.1.0"
plumbum = "^1.6.9"
python = "^3.6.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
docker-compose = "^1.26.2"
flake8 = "^3.8.3"
invoke = "^1.4.1"
pre-commit = "^2.7.1"
pylint = "^2.6.0"
pytest = "^6.0.1"
pytest-xdist = "^2.1.0"
packaging = "^20.4"
[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"]