SuperClaude/setup/__init__.py

17 lines
356 B
Python
Raw Normal View History

2025-08-14 08:56:04 +05:30
"""
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
DATA_DIR = SETUP_DIR / "data"
2025-08-14 08:56:04 +05:30
# Installation target
DEFAULT_INSTALL_DIR = Path.home() / ".claude"