-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.cfg
68 lines (59 loc) · 1.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
[aliases]
test = pytest
[tool.isort]
profile = "black"
multi_line_output = 3
[tool:pytest]
# ignore certain folders and pytest warnings
addopts =
--ignore build_tools
--ignore examples
--ignore docs
--durations 10
--timeout 600
--cov skpro
--cov-report xml
--cov-report html
--showlocals
--only_changed_modules True
-n auto
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 =
skpro/_contrib/*
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203
[metadata]
description_file = README.md
long_description_content_type = text/markdown
[check-manifest]
ignore =
.binder/**
.all-contributorsrc
.coveragerc
examples/**
build_tools/**
__check_build/**
docs/**
Makefile
CODEOWNERS
CONTRIBUTING.md
*.yaml
*.yml
[isort]
profile = black
[pydocstyle]
convention = numpy
match = (?!test_).*\.py
[bdist_wheel]
universal = false
[sdist]
formats = gztar