From 549f12344cd8c9333a3c4aaf7b4d27865e2d578d Mon Sep 17 00:00:00 2001 From: acmacunlay Date: Mon, 7 Oct 2024 23:59:01 +0800 Subject: [PATCH] Add dependency: coverage --- .gitignore | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2f89f02..a7b1556 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ __pycache__ *.egg-info +.coverage .mypy_cache .pytest_cache .ruff_cache diff --git a/pyproject.toml b/pyproject.toml index 76091cb..090b842 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ classifiers = [ ] [project.optional-dependencies] -dev = ["build", "mypy", "pytest", "ruff", "setuptools", "twine"] +dev = ["build", "coverage", "mypy", "pytest", "ruff", "setuptools", "twine"] [project.urls] Homepage = "https://github.com/acmacunlay/pywaveshare"