Files
dependencies/cppcheck/pyproject.toml
Adeeb Shihadeh f117a0e60d add cppcheck package (#10)
Cppcheck 2.19.1 static analysis tool, built from source. Includes
the MISRA C addon, cfg files, and platform definitions for opendbc
and panda safety analysis.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 10:18:33 -08:00

19 lines
377 B
TOML

[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cppcheck"
version = "2.19.1"
description = "Cppcheck static analysis tool"
requires-python = ">=3.8"
[project.scripts]
cppcheck = "cppcheck:_run"
[tool.setuptools.packages.find]
include = ["cppcheck*"]
[tool.setuptools.package-data]
cppcheck = ["install/**/*"]