use clap::Parser;
use std::path::PathBuf;
#[derive(Parser, Debug, Clone, PartialEq)]
pub struct BundleArgs {
#[arg(value_name = "ARTIFACT")]
pub artifact: PathBuf,
#[arg(short, long)]
pub output: PathBuf,
#[arg(short, long)]
pub file: Vec<PathBuf>,
#[arg(long)]
pub zip: bool,
#[arg(long)]
pub include_citations: bool,
}