mirror of
https://github.com/thombashi/subprocrunner.git
synced 2021-05-19 21:14:52 +03:00
57 lines
834 B
TOML
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',
|
|
]
|