forked from ProvableHQ/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (44 loc) · 994 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
49
50
51
52
53
[aliases]
test = pytest
[tool.isort]
profile = "black"
multi_line_output = 3
[tool:pytest]
# ignore certain folders and pytest warnings
testpaths = test
addopts =
--doctest-modules
--durations 20
--timeout 600
--showlocals
--numprocesses 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
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203
[options.package_data]
* = *.txt, *.rst
[check-manifest]
ignore =
# Ignore virtual environments in local builds
venv/**
# Ignore the docs examples symlink to examples and its contents
docs/examples
docs/examples/**
[isort]
profile = black
[pydocstyle]
convention = numpy
match = (?!test_).*\.py
[bdist_wheel]
universal = false
[sdist]
formats = gztar