From 623d59d4b53fcba33d747e6d0be5169072e00dd2 Mon Sep 17 00:00:00 2001 From: yusyus Date: Tue, 30 Dec 2025 23:52:18 +0300 Subject: [PATCH] feat: Add py.typed for PEP 561 type checking support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added empty py.typed marker file to enable type checkers (mypy, pyright, pylance) to use inline type hints from the package. This file was declared in pyproject.toml package_data but was missing, causing build warnings. Benefits: - Enables type checkers to use inline type hints - Follows Python typing best practices (PEP 561) - Improves IDE autocomplete/intellisense Fixes #222 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- src/skill_seekers/py.typed | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/skill_seekers/py.typed diff --git a/src/skill_seekers/py.typed b/src/skill_seekers/py.typed new file mode 100644 index 0000000..e69de29