-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.cfg
55 lines (46 loc) · 1.47 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
[flake8]
max-line-length = 119
extend-ignore = E203, W503, W504
exclude =
.jupyter
.local
per-file-ignores =
**/__init__.py: F401 F403
chempy/arrhenius.py: F401
chempy/*.*: E226
chempy/kinetics/tests/test_rates.py: E221 E222 E251
chempy/properties/**: E222
chempy/debye_huckel.py: F401
doc/conf.py: ALL
chempy/eyring.py: F401
[tool:pytest]
norecursedirs = .* _* build dist conda-recipe scripts benchmarks doc deploy venv *cache*
flake8-max-line-length = 119
flake8-ignore =
# E203: whitespace before colon on list slice
# E221: Multiple spaces before operator.
# E222: Multiple spaces after operator.
# E226: Missing space around arithmetic operator.
# E251: unexpected spaces around keyword/parameter equals
# E721: do not compare types
# F401: Multiple imports on one line.
# F403: Module import not at top of file.
# W503: Break before binary operator; warn on breaking after.
# W504: Break after binary operator; warn on breaking before.
* E203 W503 W504
__init__.py F401 F403
arrhenius.py F401
chempy/*.* E226
chempy/chemistry.py E721
chempy/kinetics/tests/test_rates.py E221 E222 E251
chempy/properties/** E222
debye_huckel.py F401
doc/conf.py ALL # conf.py is a generated file
eyring.py F401
filterwarnings =
ignore::chempy.ChemPyDeprecationWarning
[bdist_wheel]
universal=1
# https://github.com/pytest-dev/pytest/issues/1445
[easy_install]
zip_ok = 0