mirror of
https://github.com/life4/textdistance.git
synced 2021-09-19 22:35:47 +03:00
UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
30 lines
565 B
INI
30 lines
565 B
INI
[metadata]
|
|
description_file = README.md
|
|
license_file = LICENSE
|
|
|
|
[flake8]
|
|
max-line-length=120
|
|
ignore=P101,P103,E241
|
|
exclude=
|
|
.tox,
|
|
.pytest_cache
|
|
venvs/
|
|
|
|
[isort]
|
|
skip=.tox,.pytest_cache,venvs
|
|
line_length=120
|
|
combine_as_imports=true
|
|
balanced_wrapping=true
|
|
lines_after_imports=2
|
|
not_skip=__init__.py
|
|
multi_line_output=5
|
|
import_heading_stdlib=built-in
|
|
import_heading_thirdparty=external
|
|
import_heading_firstparty=project
|
|
import_heading_localfolder=app
|
|
|
|
[tool:pytest]
|
|
addopts = --strict-markers
|
|
markers =
|
|
external: tests that require external libs to run
|