forked from streamlink/streamlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (51 loc) · 1.16 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[metadata]
license_file = LICENSE
[versioneer]
VCS = git
style = pep440
versionfile_source = src/streamlink/_version.py
versionfile_build = streamlink/_version.py
tag_prefix =
parentdir_prefix = streamlink-
[flake8]
ignore =
# W503 - line break before binary operator
# https://www.python.org/dev/peps/pep-0008/#should-a-line-break-before-or-after-a-binary-operator
W503,
exclude =
__pycache__/,
.git/,
build/,
dist/,
docs/,
examples/,
env/,
src/streamlink/packages/flashmedia/,
script/
venv/,
versioneer.py,
win32/,
per-file-ignores =
src/streamlink/__init__.py:E402,F401,I100,I101,I201,I202,I666,
src/streamlink/packages/*:I100,I101,I201,I202,I666,
src/streamlink/packages/**/*:I100,I101,I201,I202,I666,
src/streamlink/plugin/api/useragents.py:E501,
src/streamlink/plugins/__init__.py:F401,
src/streamlink/stream/__init__.py:F401,
src/streamlink_cli/utils/named_pipe.py:F401,
tests/mock.py:F401,F403,
max-line-length = 128
show-source = True
statistics = True
builtins =
basestring,
file,
raw_input,
unicode,
xrange,
import-order-style = pycharm
application-import-names =
streamlink,
streamlink_cli,
tests,
versioneer,