forked from Pbartek/pyobd-pi
-
Notifications
You must be signed in to change notification settings - Fork 391
/
Copy pathpyproject.toml
36 lines (35 loc) · 1.15 KB
/
pyproject.toml
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
[project]
name = "obd"
version = "0.7.3"
authors = [
{ name="Brendan Whitfield", email="me@brendan-w.com" },
{ name="Alistair Francis", email="alistair@alistair23.me" },
{ name="Paul Bartek" },
{ name="Peter Harris" },
]
description = "Serial module for handling live sensor data from a vehicle's OBD-II port"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Operating System :: POSIX :: Linux",
"Topic :: System :: Monitoring",
"Programming Language :: Python :: 3",
"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",
"Development Status :: 3 - Alpha",
"Topic :: System :: Logging",
"Intended Audience :: Developers",
]
keywords = ["obd", "obdii", "obd-ii", "obd2", "car", "serial", "vehicle", "diagnostic"]
dependencies = [
"pyserial==3.*",
"pint==0.24.*",
]
license = "GPL-2.0-only"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/brendan-w/python-OBD"
Issues = "https://github.com/brendan-w/python-OBD/issues"