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.
19 lines
586 B
Python
19 lines
586 B
Python
4 years ago
|
from io import open
|
||
|
from setuptools import find_packages, setup
|
||
|
|
||
|
setup(
|
||
|
name="ocrd-galley",
|
||
|
author="Mike Gerber, The QURATOR SPK Team",
|
||
|
author_email="mike.gerber@sbb.spk-berlin.de, qurator@sbb.spk-berlin.de",
|
||
|
description="A Dockerized test environment for OCR-D processors ship",
|
||
|
keywords="qurator ocr ocr-d",
|
||
|
license="Apache",
|
||
|
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
||
|
namespace_packages=["qurator"],
|
||
|
entry_points={
|
||
|
"console_scripts": [
|
||
|
"ocrd=qurator.ocrd_galley.cli:main",
|
||
|
]
|
||
|
},
|
||
|
)
|