-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
47 lines (40 loc) · 867 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
[aliases]
test=pytest
[tool:pytest]
testpaths = afar/tests
[flake8]
max-line-length = 100
exclude =
versioneer.py,
afar/tests/,
build/
ignore =
E203, # whitespace before ':'
E231, # Multiple spaces around ","
W503, # line break before binary operator
[isort]
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
profile = black
skip_gitignore = true
float_to_top = true
default_section = THIRDPARTY
known_first_party = afar
[coverage:run]
source = afar
branch = True
omit =
afar/_version.py,
afar/tests/*
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
pragma: no cover
raise AssertionError
raise NotImplementedError
[versioneer]
VCS = git
style = pep440
versionfile_source = afar/_version.py
versionfile_build = afar/_version.py
tag_prefix =
parentdir_prefix = afar-