-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 954 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 954 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[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"
package-mode = false
[tool.poetry.dependencies]
copier = ">=9"
plumbum = "^1.8.2"
python = "^3.8.1"
[tool.poetry.dev-dependencies]
black = "^24.8.0"
flake8 = "^6.1.0"
invoke = "^2.2.1"
pylint = "^3.2.7"
pytest = "^8.3.5"
pytest-xdist = "^3.3.1"
packaging = "^26.0"
requests = "^2.32.4"
pre-commit = "^3.3.3"
python-on-whales = "^0.81.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"]
# ruff
[tool.ruff]
fix = true
target-version = "py39"
[tool.ruff.lint]
extend-select = [
"UP", # pyupgrade
"I", # isort
]