-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
36 lines (32 loc) · 806 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
[metadata]
description-file = README.md
[versioneer]
VCS = git
style = pep440
versionfile_source = geordpy/_version.py
versionfile_build = geordpy/_version.py
tag_prefix = v
parentdir_prefix = geordpy-
[flake8]
# ignore externals
exclude =
versioneer.py
_version.py
# for compatibility with black
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E203,E501,E731
[tool:pytest]
testpaths =
tests
filterwarnings =
error
# ignored by default
ignore::ImportWarning
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
# raised by Cython, usually harmless
ignore:numpy.dtype size changed:RuntimeWarning
ignore:numpy.ufunc size changed:RuntimeWarning
# sometimes, dependencies leak resources
ignore:.*socket\.socket.*:pytest.PytestUnraisableExceptionWarning