"""Paths and identity for the fixed-capacity drinkware release."""

from pathlib import Path

ROOT = Path(__file__).resolve().parents[1]
VERSION = "V2.0"
OUTPUT = ROOT / "成果版本" / "饮水用具品类规划_V2.0_2026-09-21"
EVIDENCE = OUTPUT / "数据与校验"
SNAPSHOT = ROOT / "9.21坑位.xlsx"
SNAPSHOT_TIME = "2026-09-21 08:00:01"


def prepare():
    EVIDENCE.mkdir(parents=True, exist_ok=True)

