From 4eeb4eb182dcb593b57dfb5c5bb58a5687e1c860 Mon Sep 17 00:00:00 2001 From: kolo Date: Fri, 21 Feb 2025 17:50:53 +0300 Subject: [PATCH] work on v0.3.0 --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 489c418..6cb5bc0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,17 @@ requires-python = ">=3.11" dependencies = [] # no dependencies +[tool.ruff] +exclude = [ + ".idea", + "venv", + ".git", + "poetry.lock", + ".__pycache__", + "tests" + ] + + [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api"