summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 0ec882e7c509bcea968c54b370b569735919568b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
    'setuptools >= 46.4.0',
]

[tool.black]
line-length = 79
target-version = ['py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
# (
#   ^/foo.py     # exclude a file named foo.py in the root of the project.
#   | .*_pb2.py  # exclude autogenerated Protocol Buffer files anywhere in the
# )
#               # project.
extend-exclude = '''
'''

[tool.pytest.ini_options]
addopts = "-ra -v"