forked from braindecode/braindecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
37 lines (32 loc) · 1.09 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
[aliases]
release = egg_info -RDb ''
# Make sure the sphinx docs are built each time we do a dist.
# bdist = build_sphinx bdist
# sdist = build_sphinx sdist
# Make sure a zip file is created each time we build the sphinx docs
# build_sphinx = generate_help build_sphinx zip_help
# Make sure the docs are uploaded when we do an upload
# upload = upload upload_help
[egg_info]
# tag_build = .dev
[bdist_rpm]
doc-files = doc
[flake8]
max-line-length = 100
per-file-ignores =
examples/*: E402,
examples/plot_bcic_iv_2a_moabb_cropped.py: E402,E501
extend-exclude =
docs/auto_examples/, docs/conf.py, docs/_build/, __init__.py
[tool:pytest]
junit_family = legacy
addopts =
--showlocals --durations=20 -ra
--doctest-ignore-import-errors --junit-xml=junit-results.xml
[pydocstyle]
convention = pep257
match_dir = ^(?!\.|externals|doc|tutorials|examples|logo).*$
match = (?!tests/__init__\.py|fixes).*\.py
add-ignore = D100,D104,D107,D413
add-select = D214,D215,D404,D405,D406,D407,D408,D409,D410,D411
ignore-decorators = ^(copy_.*_doc_to_|on_trait_change|cached_property|deprecated|property|.*setter).*