-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
50 lines (47 loc) · 1.07 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
[versioneer]
VCS = git
style = pep440
versionfile_source = src/MTfit/_version.py
versionfile_build = MTfit/_version.py
tag_prefix =
parentdir_prefix = MTfit-
# Flake 8 config
[flake8]
# Ignore errrors
# E501: Ignore line length
# E226: Missing whitespace around arithmetic operator
# Other default ignores: E121, E123, E126, E24, E704
ignore = E501,E226,E121,E123,E126,E24,E704,W605,E133E241,E242,E704,W503,W504,W505
count = True
exclude =
# No need to traverse our git directory
.git,
.\.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
./docs/source/conf.py,
# This contains built code
build/*,
.\build\lib\*,
.\build\*,
# This contains the builds that we don't want to check
dist,
# This contains the docs
docs/*,
core_python_build/docs/*,
# Compiled files
*.pyc,
# Docs files
*.rst,
*.md,
*.png,
.tox,
examples,
tests,
versioneer.py,
.venv/*,
.tox/*
show_source = True
statistics = True