]> jfr.im git - yt-dlp.git/blame - setup.cfg
[cleanup] Misc
[yt-dlp.git] / setup.cfg
CommitLineData
4056ad8f 1[wheel]
c487cf00 2universal = true
dc9a441b
JMF
3
4[flake8]
c487cf00 5exclude = build,venv,.tox,.git
19a03940 6ignore = E402,E501,E731,E741,W503
c487cf00 7per_file_ignores =
8 ./devscripts/lazy_load_template.py: F401
9
10[tool:pytest]
11addopts = -ra -v --strict-markers
12markers =
13 download
14
15[tox:tox]
16skipsdist = true
17envlist = py{36,37,38,39,310},pypy{36,37,38,39}
18skip_missing_interpreters = true
19
20[testenv] # tox
21deps =
22 pytest
23commands = pytest {posargs:"-m not download"}
24passenv = HOME # For test_compat_expanduser
25setenv =
26 # PYTHONWARNINGS = error # Catches PIP's warnings too
27
28[isort]
29py_version = 36
30multi_line_output = VERTICAL_HANGING_INDENT
31line_length = 80
32reverse_relative = true
33ensure_newline_before_comments = true
34include_trailing_comma = true