Files
mayan-edms/mayan/apps/ocr/dependencies.py
Roberto Rosario ea3b513ae3 Add new app to handle all dependencies
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2019-05-03 01:12:20 -04:00

40 lines
1.5 KiB
Python

from __future__ import unicode_literals
from django.utils.translation import ugettext_lazy as _
from mayan.apps.dependencies.classes import BinaryDependency, PythonDependency
from .backends.tesseract import Tesseract
tesseract = Tesseract(auto_initialize=False)
tesseract.read_settings()
BinaryDependency(
copyright_text='''
The code in this repository is licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
''', help_text=_('Free Open Source OCR Engine'), label='Tesseract',
module=__name__, name='tesseract', path=tesseract.tesseract_binary_path
)
PythonDependency(
copyright_text='''
PyOCR is released under the GPL v3+.
Copyright belongs to the authors of each piece of code
(see the file AUTHORS for the contributors list, and
git blame to know which lines belong to which author).
''', help_text=_(
'PyOCR is a Python library simplifying the use of OCR tools like '
'Tesseract or Cuneiform.'
), module=__name__, name='pyocr', version_string='==0.6'
)