-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
33 lines (24 loc) · 759 Bytes
/
setup.cfg
File metadata and controls
33 lines (24 loc) · 759 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
[bumpversion]
current_version = 1.7.0
commit = True
tag = True
tag_name = {new_version}
[bumpversion:file:setup.py]
[bumpversion:file:cookiecutter/__init__.py]
[flake8]
ignore = BLK100,E231,W503,D102,D103
# http://www.pydocstyle.org/en/2.1.1/error_codes.html
# D102: Missing docstring in public method
# D103: Missing docstring in public function
# Excludes due to known issues or incompatibilities with black:
# BLK100: Black would make changes. https://pypi.org/project/flake8-black/
# W503: https://github.com/psf/black/search?q=W503&unscoped_q=W503
# E231: https://github.com/psf/black/issues/1202
statistics = 1
# black official is 88
max-line-length = 88
[bdist_wheel]
universal = 1
[tool:pytest]
testpaths = tests
addopts = --cov=cookiecutter