mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
25 lines
623 B
Python
25 lines
623 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.1.6" # Fallback - Deep Research Integration
|
|
|
|
__author__ = "NomenAK, Mithun Gowda B"
|
|
|
|
# Core paths
|
|
SETUP_DIR = Path(__file__).parent
|
|
PROJECT_ROOT = SETUP_DIR.parent
|
|
DATA_DIR = SETUP_DIR / "data"
|
|
|
|
# Import home directory detection for immutable distros
|
|
from .utils.paths import get_home_directory
|
|
|
|
# Installation target
|
|
DEFAULT_INSTALL_DIR = get_home_directory() / ".claude"
|