Files
subprocrunner/pyproject.toml
2021-03-21 19:54:59 +09:00

57 lines
834 B
TOML

[build-system]
requires = ["setuptools", "wheel"]
[tool.black]
line-length = 100
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| \.pytype
| _build
| buck-out
| build
| dist
)/
| docs/conf.py
'''
[tool.isort]
known_third_party = [
'pytest',
'readmemaker',
'typepy',
]
include_trailing_comma = true
line_length = 100
lines_after_imports = 2
multi_line_output = 3
skip_glob = [
'*/.eggs/*',
'*/.pytype/*',
'*/.tox/*',
]
[tool.coverage.run]
source = ['subprocrunner']
branch = true
omit = [
]
[tool.coverage.report]
show_missing = true
precision = 1
exclude_lines = [
'except ImportError',
'raise NotImplementedError',
'pass',
'ABCmeta',
'abstractmethod',
'abstractproperty',
'abstractclassmethod',
'warnings.warn',
]