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"