You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
788 B
Python

# -*- coding: utf-8 -*-
import codecs
from setuptools import setup, find_packages
setup(
name='ocrd_repair_inconsistencies',
description='Repair glyph/word/line order inconsistencies',
long_description=codecs.open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Mike Gerber',
author_email='mike.gerber@sbb.spk-berlin.de',
license='Apache License 2.0',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=open('requirements.txt').read().split('\n'),
package_data={
'': ['*.json', '*.yml', '*.yaml'],
},
entry_points={
'console_scripts': [
'ocrd-repair-inconsistencies=ocrd_repair_inconsistencies.cli:ocrd_repair_inconsistencies',
]
},
)