From 8f995a7b2295844e0fa1da0f2ea6be87a98f024c Mon Sep 17 00:00:00 2001 From: Arclight Date: Mon, 14 Jul 2025 20:33:35 +0800 Subject: [PATCH] Add an alternative plugin interface for gs_usb --- doc/plugin-interface.rst | 3 +++ pyproject.toml | 1 + 2 files changed, 4 insertions(+) diff --git a/doc/plugin-interface.rst b/doc/plugin-interface.rst index 8e60c50c2..d841281e8 100644 --- a/doc/plugin-interface.rst +++ b/doc/plugin-interface.rst @@ -77,6 +77,8 @@ The table below lists interface drivers that can be added by installing addition +----------------------------+-------------------------------------------------------+ | `python-can-cando`_ | Python wrapper for Netronics' CANdo and CANdoISO | +----------------------------+-------------------------------------------------------+ +| `python-can-candle`_ | A full-featured driver for candleLight | ++----------------------------+-------------------------------------------------------+ .. _python-can-canine: https://github.com/tinymovr/python-can-canine .. _python-can-cvector: https://github.com/zariiii9003/python-can-cvector @@ -84,4 +86,5 @@ The table below lists interface drivers that can be added by installing addition .. _python-can-sontheim: https://github.com/MattWoodhead/python-can-sontheim .. _zlgcan: https://github.com/jesses2025smith/zlgcan-driver .. _python-can-cando: https://github.com/belliriccardo/python-can-cando +.. _python-can-candle: https://github.com/BIRLab/python-can-candle diff --git a/pyproject.toml b/pyproject.toml index ee98fec24..a6a7f38c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,6 +71,7 @@ remote = ["python-can-remote"] sontheim = ["python-can-sontheim>=0.1.2"] canine = ["python-can-canine>=0.2.2"] zlgcan = ["zlgcan"] +candle = ["python-can-candle>=1.2.2"] viewer = [ "windows-curses; platform_system == 'Windows' and platform_python_implementation=='CPython'" ]