forked from deepchem/deepchem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (44 loc) · 1.33 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
[tool:pytest]
markers =
jax: marks tests for deepchem-jax only (deselect with '-m "not jax"')
torch: marks tests for deepchem-torch only (deselect with '-m "not torch"')
tensorflow: marks tests for deepchem-torch only (deselect with '-m "not tensorflow"')
slow: marks tests as slow (deselect with '-m "not slow"')
serial
dqc: marks tests for deepchem-dqc only (deselect with '-m "not dqc"')
[mypy]
ignore_missing_imports = True
[mypy-yaml.*]
ignore_missing_imports = True
[flake8]
ignore =
# Indentation is not a multiple of four
E111,
# Indentation is not a multiple of four (comment)
E114,
# continuation line under-indented for hanging indent
E121,
# Closing bracket does not match visual indentation
E124,
# continuation line over-indented for hanging indent
E126,
# Continuation line with same indent as next logical line
E125,
# Continuation line over-indented for visual indent
E127,
# Visually indented line with same indent as next logical line
E129,
# the backslash is redundant between bracket
E502,
# Line break before binary operator
W503,
# Line break after binary operator
W504,
# invalid escape sequence
W605,
# do not user bare except
E722
max-line-length = 300
[yapf]
based_on_style = google
indent_width = 4