mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
- Update PyPI version from 4.0.0 to 4.0.3 - Align all version references (Python, NPM, documentation) - Update VERSION file, pyproject.toml, and all __init__.py files - Update CHANGELOG and README version badges - Fix all version references in RELEASE_INSTRUCTIONS.md This ensures consistency between PyPI and NPM packages. 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
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.3" # 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" |