From d61c13c443a374d9405a62d77e77d72daf8e9653 Mon Sep 17 00:00:00 2001 From: Vic <125237471+vicsanity623@users.noreply.github.com> Date: Mon, 9 Mar 2026 19:11:32 -0700 Subject: [PATCH] Update pyproject.toml added missing ruff, mypy, pytest to pyproject --- pyproject.toml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 07d0b4b..36aec22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,12 @@ dependencies = [ "requests", "charset-normalizer", "chardet", - "ollama" + "ollama", + "ruff", + "mypy", + "pytest", + "types-requests", + "types-chardet" ] [project.scripts] @@ -37,4 +42,4 @@ explicit_package_bases = true [tool.pytest.ini_options] pythonpath = ["src"] -testpaths = ["tests"] \ No newline at end of file +testpaths = ["tests"]