"""Reproducible local quantization and release tools.""" import os from pathlib import Path # Keep optional dependency caches writable under a restricted Windows workspace. ROOT = Path(__file__).resolve().parent.parent os.environ.setdefault('NUMBA_CACHE_DIR', str(ROOT / '.cache' / 'numba')) os.environ.setdefault('HF_HOME', str(ROOT / '.cache' / 'huggingface'))