Warning, /multimedia/kdenlive-opentimelineio/setup.cfg is written in an unsupported language. File is not indexed.
0001 # SPDX-FileCopyrightText: none 0002 # SPDX-License-Identifier: CC0-1.0 0003 0004 [flake8] 0005 exclude = 0006 *.cfg 0007 *.txt 0008 *.md 0009 *.in 0010 .github 0011 .pytest_cache 0012 docs 0013 build 0014 dist 0015 *.egg-info 0016 venv 0017 select = E,W,F 0018 max-line-length = 88 0019 # @TODO: for now, ignoring both line continuation before OR after binary 0020 # operators. The pep8 style seems to have adopted the W504 style as 0021 # correct, which we've been doing conventionally but not 100% uniformly. 0022 # At some point in the future, we should remove W504 from this list and 0023 # conform all the continuation to be the same. 0024 ignore = 0025 W503 0026 W504 0027 0028 [tool:pytest] 0029 addopts = -W ignore::DeprecationWarning 0030 0031 #[bdist_wheel] 0032 # Let a wheel be compatible with both Python 2 and 3 0033 #universal=1