13 lines
266 B
Python
13 lines
266 B
Python
# SPDX-FileCopyrightText: 2024 James R. Barlow
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
# Enforce English hegemony
|
|
from __future__ import annotations
|
|
|
|
DEFAULT_LANGUAGE = 'eng'
|
|
|
|
# Default rotation threshold
|
|
DEFAULT_ROTATE_PAGES_THRESHOLD = 14.0
|
|
|
|
PROGRAM_NAME = 'OCRmyPDF'
|