Fixed version mismatch bug where hardcoded versions were out of sync with pyproject.toml. Updated version from 2.5.2 to 2.7.0 in: - src/skill_seekers/__init__.py - src/skill_seekers/cli/__init__.py - src/skill_seekers/mcp/__init__.py - src/skill_seekers/mcp/tools/__init__.py Now skill-seekers --version correctly reports: 2.7.0 Fixes #248 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
23 lines
587 B
Python
23 lines
587 B
Python
"""
|
|
Skill Seekers - Convert documentation, GitHub repos, and PDFs into Claude AI skills.
|
|
|
|
This package provides tools for automatically scraping, organizing, and packaging
|
|
documentation from various sources into uploadable Claude AI skills.
|
|
"""
|
|
|
|
__version__ = "2.7.0"
|
|
__author__ = "Yusuf Karaaslan"
|
|
__license__ = "MIT"
|
|
|
|
# Expose main components for easier imports
|
|
from skill_seekers.cli import __version__ as cli_version
|
|
from skill_seekers.mcp import __version__ as mcp_version
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__author__",
|
|
"__license__",
|
|
"cli_version",
|
|
"mcp_version",
|
|
]
|