mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-24 05:07:10 +00:00
17 lines
363 B
Python
17 lines
363 B
Python
|
|
"""
|
||
|
|
SuperClaude Installation Suite
|
||
|
|
Pure Python installation system for SuperClaude framework
|
||
|
|
"""
|
||
|
|
|
||
|
|
__version__ = "3.0.0"
|
||
|
|
__author__ = "SuperClaude Team"
|
||
|
|
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
# Core paths
|
||
|
|
SETUP_DIR = Path(__file__).parent
|
||
|
|
PROJECT_ROOT = SETUP_DIR.parent
|
||
|
|
CONFIG_DIR = PROJECT_ROOT / "config"
|
||
|
|
|
||
|
|
# Installation target
|
||
|
|
DEFAULT_INSTALL_DIR = Path.home() / ".claude"
|