-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.cfg
48 lines (43 loc) · 1 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
[metadata]
name = volkswagencarnet
author = Robin Ostlund
author_email = [email protected]
description = Communicate with Volkswagen Connect
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.11
[options.packages.find]
where = .
exclude =
tests
tests.*
[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