-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (39 loc) · 1.1 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
[tool.poetry]
name = "basic-return"
version = "v0.1.0.11"
description = ""
authors = ["henrique lino <[email protected]>"]
readme = "README.md"
repository = "https://github.com/henriquelino/basic_return"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
[tool.scriv]
version = 'literal: pyproject.toml: tool.poetry.version'
format = 'md'
[tool.flake8]
ignore = [
#'E501', # line too long
'E402', # module level import not at top of file
'E251', # Unexpected spaces around keyword / parameter equals, let yapf handle this
]
count = true
statistics = true
max-complexity = 15
max-line-length = 200
exclude = ['__pycache__', '__init__.py']
[tool.yapf]
based_on_style = 'google'
indent_width = 4
column_limit = 140
split_before_logical_operator = true
EACH_DICT_ENTRY_ON_SEPARATE_LINE = true
INDENT_DICTIONARY_VALUE = false
ALLOW_SPLIT_BEFORE_DICT_VALUE = false
INDENT_CLOSING_BRACKETS = false
DEDENT_CLOSING_BRACKETS = true
SPLIT_ALL_COMMA_SEPARATED_VALUES = true