#!/usr/bin/env python3 """Dev launcher for Vual.""" import sys from pathlib import Path # All pycache in one place sys.pycache_prefix = str(Path(__file__).resolve().parent / ".pycache") sys.path.insert(0, str(Path(__file__).resolve().parent / "src")) from vual.__main__ import main main()