-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
55 lines (50 loc) · 1.11 KB
/
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
53
54
55
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
[versioneer]
VCS = git
versionfile_source = hdmf_docutils/_version.py
versionfile_build = hdmf_docutils/_version.py
style = pep440-pre
tag_prefix = ''
[flake8]
exclude =
.git,
__pycache__,
build/,
dist/,
versioneer.py
ignore =
# E101 indentation contains mixed spaces and tabs
E101,
# E117 over-indented
E117,
# E121 continuation line under-indented for hanging indent
E121,
# E122 continuation line missing indentation or outdented
E122,
# E127 continuation line over-indented for visual indent
E127,
# E128 continuation line under-indented for visual indent
E128,
# E226 missing whitespace around arithmetic operator
E226,
# E501 line too long
E501,
# E722 do not use bare 'except'
E722,
# W191 indentation contains tabs
W191,
# W504 line break after binary operator
W504,
# W605 invalid escape sequence
W605,
# from optional flake8-print: T001: print found
T001,
# from optional flake8-print: T002: Python 2.x reserved word print used
T002,
[metadata]
description_file = README.rst