forked from BlauGroup/mrnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (40 loc) · 960 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
[tool:pytest]
addopts = --durations=30
[pycodestyle]
count = True
ignore = E121,E123,E126,E133,E203,E226,E241,E242,E704,W503,W504,W505,E741,W605,W293
max-line-length = 120
statistics = True
[flake8]
exclude = .git,__pycache__,docs_rst/conf.py,tests,pymatgen/io/abinit,__init__.py
# max-complexity = 10
extend-ignore = E741
max-line-length = 120
[isort]
profile=black
[pydocstyle]
ignore = D105,D2,D4
[mypy-numpy.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-matplotlib.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-scipy.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-numba.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-ruamel.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-pymatgen.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-monty.*]
ignore_missing_imports = True
follow_imports = skip
[mypy-networkx.*]
ignore_missing_imports = True
follow_imports = skip