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.
27 lines
830 B
Python
27 lines
830 B
Python
# -*- coding: utf-8 -*-
|
|
from pathlib import Path
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='ocrd_calamari',
|
|
version='0.0.4',
|
|
description='Calamari bindings',
|
|
long_description=Path('README.md').read_text(),
|
|
long_description_content_type='text/markdown',
|
|
author='Konstantin Baierer, Mike Gerber',
|
|
author_email='unixprog@gmail.com, mike.gerber@sbb.spk-berlin.de',
|
|
url='https://github.com/kba/ocrd_calamari',
|
|
license='Apache License 2.0',
|
|
packages=find_packages(exclude=('tests', 'docs')),
|
|
install_requires=Path('requirements.txt').read_text().split('\n'),
|
|
package_data={
|
|
'': ['*.json', '*.yml', '*.yaml'],
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ocrd-calamari-recognize=ocrd_calamari.cli:ocrd_calamari_recognize',
|
|
]
|
|
},
|
|
)
|