Spaces:
Running
Running
File size: 416 Bytes
f3270e6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Copyright (C) 2021-2025, Mindee.
# This program is licensed under the Apache License 2.0.
# See LICENSE or go to <https://opensource.org/licenses/Apache-2.0> for full license details.
import os
import doctr
PROJECT_NAME: str = "docTR API template"
PROJECT_DESCRIPTION: str = "Template API for Optical Character Recognition"
VERSION: str = doctr.__version__
DEBUG: bool = os.environ.get("DEBUG", "") != "False"
|