forked from streamlink/streamlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
39 lines (36 loc) · 675 Bytes
/
Copy pathsetup.cfg
File metadata and controls
39 lines (36 loc) · 675 Bytes
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
[wheel]
universal = 1
[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/,
env/,
src/streamlink/packages/flashmedia/,
venv/,
versioneer.py,
win32/,
max-line-length = 128
show-source = True
statistics = True
builtins =
basestring,
file,
raw_input,
unicode,
xrange,