"""export_1c_help version.""" from __future__ import annotations from pathlib import Path _VERSION_FILE = Path(__file__).resolve().parent.parent / "VERSION" def _read_version() -> str: try: text = _VERSION_FILE.read_text(encoding="utf-8-sig", errors="ignore") return text.replace("\0", "").strip() or "0.0.0" except OSError: return "0.0.0" __version__ = _read_version() __status__ = "in development"