//! Setup command arguments
use clap::Args;
/// Run project setup script (installs dependencies)
#[derive(Args, Debug)]
pub struct SetupArgs {
/// Run in non-interactive mode
#[arg(long)]
pub non_interactive: bool,
/// Only check if tools are installed, don't install
#[arg(long)]
pub check_only: bool,
}