-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
95 lines (82 loc) · 1.88 KB
/
pyproject.toml
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = [
"setuptools>=42",
"wheel",
"setuptools_scm[toml]",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/probfindiff/_version.py"
write_to_template = """
# pylint: skip-file
# coding: utf-8
# file generated by setuptools_scm
# don't change, don't track in version control
version = \"{version}\"
"""
# Configuration of the black code style checker
# For more information about Black's usage of this file, see
# https://github.com/psf/black#pyprojecttoml
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
multi_line_output = "3"
include_trailing_comma = "true"
force_grid_wrap = "0"
use_parentheses = "true"
line_length = "88"
profile = "black"
# Pylint configuration
[tool.pylint.master]
load-plugins = [
"pylint.extensions.docparams",
"pylint.extensions.docstyle",
]
[tool.pylint.messages_control]
disable = [
"invalid-name", # we name things the way we want.
"line-too-long", # black takes care of line breaks. Long docs dont really matter.
"import-error", # caught by the tests, not by pylint.
]
[tool.pylint.format]
max-line-length = "88"
[tool.pytest.ini_options]
addopts = [
"--verbose",
"--doctest-modules",
]
norecursedirs = [
".*",
"*.egg*",
"dist",
"build",
".tox"
]
testpaths = [
"src/probfindiff",
"tests"
]
doctest_optionflags = "NUMBER NORMALIZE_WHITESPACE"
filterwarnings = [
# "import jax" implies "import flatbuffers", which raises the following warning.
# Ignore similar to https://github.com/google/jax/blob/main/pytest.ini
"ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning:flatbuffers.*"
]
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true