|
| 1 | +[project] |
| 2 | +name = "obd" |
| 3 | +version = "0.7.2" |
| 4 | +authors = [ |
| 5 | + { name= "Brendan Whitfield", email= "[email protected]" }, |
| 6 | + { name= "Alistair Francis", email= "[email protected]" }, |
| 7 | + { name="Paul Bartek" }, |
| 8 | + { name="Peter Harris" }, |
| 9 | +] |
| 10 | +description = "Serial module for handling live sensor data from a vehicle's OBD-II port" |
| 11 | +readme = "README.md" |
| 12 | +requires-python = ">=3.9" |
| 13 | +classifiers = [ |
| 14 | + "Operating System :: POSIX :: Linux", |
| 15 | + "Topic :: System :: Monitoring", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3.9", |
| 18 | + "Programming Language :: Python :: 3.10", |
| 19 | + "Programming Language :: Python :: 3.11", |
| 20 | + "Programming Language :: Python :: 3.12", |
| 21 | + "Programming Language :: Python :: 3.13", |
| 22 | + "Development Status :: 3 - Alpha", |
| 23 | + "Topic :: System :: Logging", |
| 24 | + "Intended Audience :: Developers", |
| 25 | +] |
| 26 | +keywords = ["obd", "obdii", "obd-ii", "obd2", "car", "serial", "vehicle", "diagnostic"] |
| 27 | +dependencies = [ |
| 28 | + "pyserial==3.*", |
| 29 | + "pint==0.24.*", |
| 30 | +] |
| 31 | +license = "GPL-2.0-only" |
| 32 | +license-files = ["LICENSE"] |
| 33 | + |
| 34 | +[project.urls] |
| 35 | +Homepage = "https://github.com/brendan-w/python-OBD" |
| 36 | +Issues = "https://github.com/brendan-w/python-OBD/issues" |
0 commit comments