forked from wtclarke/fsl_mrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
34 lines (33 loc) · 765 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
[versioneer]
VCS = git
style = pep440
versionfile_source = fsl_mrs/_version.py
versionfile_build = fsl_mrs/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
ignore =
# Multiple spaces before operator
E221
W503
per-file-ignores =
__init__.py:F401
fsl_mrs/utils/report.py:E501
exclude =
.git,
__pycache__,
.vscode,
# Exclude experimental bits for now.
mmbasis,
fsl_mrs/utils/stats/vb.py
# Exclude our own version of config argparse
fsl_mrs/auxiliary/configargparse.py
# Exclude submodules
fsl_mrs/denmatsim
# Exclude testdata
fsl_mrs/tests/testdata
# Exclude splash
fsl_mrs/utils/splash.py
# Exclude test config files
fsl_mrs/tests/mc_validation/two_model.py
max-line-length=120