-
Notifications
You must be signed in to change notification settings - Fork 114
/
pyproject.toml
47 lines (40 loc) · 910 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
37
38
39
40
41
42
43
44
45
46
47
[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 = ">=9"
plumbum = "^1.8.2"
python = "^3.8.1"
[tool.poetry.dev-dependencies]
black = "^23.10.1"
flake8 = "^6.1.0"
invoke = "^2.2.0"
pylint = "^3.0.2"
pytest = "^7.4.0"
pytest-xdist = "^3.3.1"
packaging = "^23.1"
requests = "^2.31.0"
pre-commit = "^3.3.3"
python-on-whales = "^0.64.2"
[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"]
# ruff
[tool.ruff]
fix = true
[tool.ruff.lint]
extend-select = [
"UP", # pyupgrade
"I", # isort
]