forked from graphene-blockchain/python-bitshares
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (46 loc) · 951 Bytes
/
setup.cfg
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
[metadata]
description-file = README.md
[aliases]
test=pytest
[coverage:run]
source=bitsharesbase,bitsharesapi,bitshares
branch=True
omit=
tests/*
.tox/*
.eggs/*
[coverage:report]
include=bitshares*
ignore_errors=True
show_missing=True
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
if sys.version > '3':
[coverage:html]
[flake8]
select = C,E,F,W,B,B950
ignore = E501,F401,E203,W503
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/conf.py,
max-complexity = 15
max-line-length = 88
[isort]
atomic=true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
line_length = 88
known_third_party =
include_trailing_comma = true