Added the Setup implimentation

This commit is contained in:
mithun50
2025-08-14 08:56:04 +05:30
parent 6cfd975d00
commit 41b5924934
107 changed files with 9771 additions and 504 deletions

6
setup/base/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
"""Base classes for SuperClaude installation system"""
from .component import Component
from .installer import Installer
__all__ = ['Component', 'Installer']