mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-27 06:38:17 +00:00
🔖 Bump version to 4.0.8
- Update version across all project files
- Update CHANGELOG.md with release notes
- Prepare for PyPI release
21 lines
468 B
Python
21 lines
468 B
Python
"""
|
|
SuperClaude Installation Suite
|
|
Pure Python installation system for SuperClaude framework
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
try:
|
|
__version__ = (Path(__file__).parent.parent / "VERSION").read_text().strip()
|
|
except Exception:
|
|
__version__ = "4.0.8" # Fallback
|
|
|
|
__author__ = "NomenAK"
|
|
|
|
# Core paths
|
|
SETUP_DIR = Path(__file__).parent
|
|
PROJECT_ROOT = SETUP_DIR.parent
|
|
DATA_DIR = SETUP_DIR / "data"
|
|
|
|
# Installation target
|
|
DEFAULT_INSTALL_DIR = Path.home() / ".claude" |