aec0407b87
Convert Ext/Help/ru.html to Markdown and push to a wiki git repository.
19 lines
369 B
Python
19 lines
369 B
Python
"""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:
|
|
return _VERSION_FILE.read_text(encoding="utf-8").strip()
|
|
except OSError:
|
|
return "0.0.0"
|
|
|
|
|
|
__version__ = _read_version()
|
|
__status__ = "in development"
|