FraBle/python-sutime

View on GitHub
setup.cfg

Summary

Maintainability
Test Coverage
[aliases]
test = pytest

[metadata]
description-file = README.md
license_file = LICENSE

[bdist_wheel]
universal = 1

[pydocstyle]
convention = google

[flake8]
max-string-usages = 6
max-local-variables = 6
max-arguments = 7
max-line-complexity = 15
max-try-body-length = 5
extend-ignore =
    # Google Python style is not RST until after processed by Napoleon
    # See https://github.com/peterjc/flake8-rst-docstrings/issues/17
    RST201,RST203,RST301,
exclude =
    sutime/test
    .build

[isort]