forked from robinostlund/volkswagencarnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
85 lines (75 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[metadata]
name = volkswagencarnet
author = Robin Ostlund
author_email = [email protected]
description = Communicate with Volkswagen WeConnect
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/robinostlund/volkswagencarnet
project_urls =
Bug Tracker = https://github.com/robinostlund/volkswagencarnet/issues
license = GPLv3
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
[options]
install_requires =
lxml
beautifulsoup4
aiohttp
pyjwt
package_dir =
= .
packages = find:
python_requires = >= 3.7
[options.packages.find]
where = .
exclude =
tests
tests.*
[flake8]
# To work with Black
# E501: line too long
# W503: Line break occurred before a binary operator
# E203: Whitespace before ':'
# D202 No blank lines allowed after function docstring
# W504 line break after binary operator
ignore =
E722,
I201,
W503,
CFQ001,
CFQ002,
E501,
W503,
E203,
D202,
W504
filename =
*.py
exclude =
.git,
__pycache__,
*.txt,
*.md,
*.cfg
max_line_length = 120
count = True
inline_quotes = double
show_source = True
statistics = True
#format = {yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s
[pycodestyle]
max_line_length=120
statistics = True
ignore = E722
count = True
verbose = True
show_source = True
[coverage:run]
branch = True
omit = tests/*,volkswagencarnet/version.py # define paths to omit
[coverage:report]
#show_missing = True
skip_covered = False