forked from aws-powertools/powertools-lambda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
40 lines (31 loc) · 720 Bytes
/
setup.cfg
File metadata and controls
40 lines (31 loc) · 720 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
[bumpversion]
current_version = 0.3.1
commit = True
tag = False
[metadata]
description-file = README.md
license_files = LICENSE
[bumpversion:file:setup.py]
[bumpversion:file:aws_lambda_powertools/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs, .eggs
ignore = E203, E266, E501, W503
max-line-length = 100
max-complexity = 18
[coverage:run]
source = aws_lambda_powertools
collect_ignore = ['setup.py']
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 100
[tool:pytest]
addopts = --cov --cov-config=.coveragerc
[options]
python_requires = >=3.6