forked from browniebroke/deezer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (27 loc) · 625 Bytes
/
Copy pathsetup.cfg
File metadata and controls
32 lines (27 loc) · 625 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
[bumpversion]
commit = True
tag = True
current_version = 0.6.0
tag_name = {new_version}
[check-manifest]
ignore =
.travis.yml
[bumpversion:file:deezer/__init__.py]
[bumpversion:file:setup.py]
[flake8]
ignore = D203
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
max-complexity = 10
max-line-length = 120