-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.06 KB
/
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
48
49
50
51
52
53
54
[tool.poetry]
name = "task-manager"
version = "0.1.0"
description = ""
authors = ["Stepan <[email protected]>"]
readme = "README.md"
packages = [{include = "task_manager"}]
[tool.poetry.dependencies]
python = "^3.11"
flake8-pyproject = "^1.2.3"
jsonschema = "^4.19.0"
aiofiles = "^23.2.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = '''
(
/(
| \.git # root of the project
| \.pytest_cache
| \.venv
| \.vscode
)/
)
'''
include = '\.pyi?$'
line-length = 120
target-version = ['py311']
[tool.isort]
balanced_wrapping = "True"
combine_as_imports = "False"
combine_star = "True"
include_trailing_comma = "True"
line_length = 120
multi_line_output = 3
order_by_type = "True"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.flake8]
exclude = [".git"]
max-line-length = 120
max-complexity = 10
statistics = true
extend-ignore = ["SC100", "SC200", "F403", "F405", "W605"]