diff --git a/README.md b/README.md index 951c46d..1f0d5a8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # pytest-cppcheck +[![CI](https://github.com/alexdej/pytest-cppcheck/actions/workflows/ci.yml/badge.svg)](https://github.com/alexdej/pytest-cppcheck/actions/workflows/ci.yml) +[![PyPI](https://img.shields.io/pypi/v/pytest-cppcheck)](https://pypi.org/project/pytest-cppcheck/) +[![Python](https://img.shields.io/pypi/pyversions/pytest-cppcheck)](https://pypi.org/project/pytest-cppcheck/) +[![License](https://img.shields.io/pypi/l/pytest-cppcheck)](https://github.com/alexdej/pytest-cppcheck/blob/main/LICENSE) + A pytest plugin that runs [cppcheck](https://cppcheck.sourceforge.io/) static analysis on C/C++ source files. Each file is collected as a test item and reported as a pass or failure in the normal pytest output. diff --git a/pyproject.toml b/pyproject.toml index 324d658..e97da96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,12 @@ dependencies = [ classifiers = [ "Framework :: Pytest", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "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", "License :: OSI Approved :: MIT License", ]