1
0
mirror of https://github.com/life4/textdistance.git synced 2021-09-19 22:35:47 +03:00
Files
textdistance-similarity/setup.cfg
Bruno Pagani 56f3aa7d40 Fix a setuptools warning
UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
2021-07-29 00:39:12 +00:00

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