Files
SuperClaude/setup/__init__.py
google-labs-jules[bot] e7b8a7d06e chore: Bump version from 4.1.0 to 4.1.1
Co-authored-by: Mithun Gowda B <mithungowda.b7411@gmail.com>
Co-authored-by: Prashant R <rprashanth681@gmail.com>
2025-09-16 01:32:49 +00:00

21 lines
484 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.1" # Fallback
__author__ = "NomenAK, Mithun Gowda B"
# Core paths
SETUP_DIR = Path(__file__).parent
PROJECT_ROOT = SETUP_DIR.parent
DATA_DIR = SETUP_DIR / "data"
# Installation target
DEFAULT_INSTALL_DIR = Path.home() / ".claude"