mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
🔖 Bump version to 4.0.8
- Update version across all project files
- Update CHANGELOG.md with release notes
- Prepare for PyPI release
24 lines
584 B
Python
24 lines
584 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
SuperClaude Framework Management Hub
|
|
Unified entry point for all SuperClaude operations
|
|
|
|
Usage:
|
|
SuperClaude install [options]
|
|
SuperClaude update [options]
|
|
SuperClaude uninstall [options]
|
|
SuperClaude backup [options]
|
|
SuperClaude --help
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
# Read version from VERSION file
|
|
try:
|
|
__version__ = (Path(__file__).parent.parent / "VERSION").read_text().strip()
|
|
except Exception:
|
|
__version__ = "4.0.8" # Fallback
|
|
__author__ = "NomenAK, Mithun Gowda B"
|
|
__email__ = "anton.knoery@gmail.com"
|
|
__license__ = "MIT"
|