forked from sktime/sktime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (43 loc) · 896 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
[aliases]
test = pytest
[tool:pytest]
# ignore certain folders and pytest warnings
addopts =
--ignore build_tools
--ignore maint_tools
--ignore examples
--ignore docs
filterwarnings =
ignore::UserWarning
ignore:numpy.dtype size changed
ignore:numpy.ufunc size changed
[flake8]
# Default flake8 3.5 ignored flags
ignore = E121, E123, E126, E226, E24, E704, W503, W504
# inline with Black code formatter
max-line-length = 88
exclude =
sktime/contrib/*
sktime/_build_utils/*
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203
[metadata]
description-file = README.rst
[check-manifest]
ignore =
.binder/**
.all-contributorsrc
.coveragerc
examples/**
build_tools/**
maint_tools/**
__check_build/**
docs/**
Makefile
CODEOWNERS
CONTRIBUTING.md
*.yaml
*.yml
[isort]
profile=black