Files
SuperClaude/setup/__init__.py
NomenAK 59d74b8af2 Initial commit: SuperClaude v3 Beta clean architecture
Complete foundational restructure with:
- Simplified project architecture
- Comprehensive documentation system
- Modern installation framework
- Clean configuration management
- Updated profiles and settings

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-14 14:28:11 +02:00

18 lines
404 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"
PROFILES_DIR = PROJECT_ROOT / "profiles"
# Installation target
DEFAULT_INSTALL_DIR = Path.home() / ".claude"