- Switch from manual package listing to automatic discovery - Improves maintainability and prevents missing module bugs - All tests passing (700+ tests) - Package contents verified identical to v2.5.1 Fixes #226 Merges #227 Thanks to @iamKhan79690 for the contribution! 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Co-Authored-By: Anas Ur Rehman (@iamKhan79690) <noreply@github.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.5.2"
|
|
__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",
|
|
]
|