# Add SETool to path setool_home = Path("{self.home_dir}") sys.path.insert(0, str(setool_home.parent))
@main.command() def info(): """Show tool information""" table = Table(title="SEtool Information") table.add_column("Property", style="cyan") table.add_column("Value", style="green") table.add_row("Version", "1.0.0") table.add_row("Status", "Ready") console.print(table) setool setup
@click.group() def main(): """SEtool - Security Enhancement Tool""" pass # Add SETool to path setool_home = Path("{self