mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Added the Setup implimentation
This commit is contained in:
18
setup/__init__.py
Normal file
18
setup/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
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"
|
||||
Reference in New Issue
Block a user