-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (72 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
80 lines (72 loc) · 1.91 KB
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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools_scm>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "carconnectivity"
description = "Library for retrieving information from car connectivity services"
dynamic = ["version"]
requires-python = ">=3.9"
authors = [
{ name = "Till Steinbach" }
]
dependencies = [
"argparse",
"cryptography",
"JSON_minify~=0.3.0",
"pytimeparse~=1.1.8",
"ntplib~=0.4.0",
"haversine~=2.9.0",
"requests~=2.33.1",
]
readme = "README.md"
license = "MIT"
license-files = [
"LICENSE",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries"
]
[project.optional-dependencies]
connectors = [
'carconnectivity-connector-volkswagen>=0.10.1',
'carconnectivity-connector-skoda>=0.11.7',
'carconnectivity-connector-seatcupra>=0.5.1',
'carconnectivity-connector-tronity>=0.7.1',
]
plugins = [
'carconnectivity-plugin-mqtt>=0.9.1',
'carconnectivity-plugin-mqtt_homeassistant>=0.6.1',
'carconnectivity-plugin-abrp>=0.8.1',
'carconnectivity-plugin-homekit>=0.7.4',
'carconnectivity-plugin-webui>=0.7',
'carconnectivity-plugin-database>=0.3',
]
images = [
'pillow~=12.2.0',
'ascii_magic~=2.7.5'
]
all = [
'carconnectivity[images,connectors,plugins]'
]
[project.urls]
[project.scripts]
carconnectivity = "carconnectivity.carconnectivity_base:main"
allcars = "all_cars:main"
[tool.setuptools_scm]
write_to = "src/carconnectivity/_version.py"
[tool.pylint.format]
max-line-length = 160
ignore-patterns= "_version.py"
[tool.bandit]
targets = "carconnectivity"