|
|
@ -4,6 +4,9 @@ from setuptools import find_packages, setup
|
|
|
|
from qurator.ocrd_galley.cli import sub_images
|
|
|
|
from qurator.ocrd_galley.cli import sub_images
|
|
|
|
console_scripts = ["%s=qurator.ocrd_galley.cli:main" % command for command in sub_images.keys()]
|
|
|
|
console_scripts = ["%s=qurator.ocrd_galley.cli:main" % command for command in sub_images.keys()]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
with open("requirements.txt") as fp:
|
|
|
|
|
|
|
|
install_requires = fp.read()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
setup(
|
|
|
|
name="ocrd-galley",
|
|
|
|
name="ocrd-galley",
|
|
|
|
author="Mike Gerber, The QURATOR SPK Team",
|
|
|
|
author="Mike Gerber, The QURATOR SPK Team",
|
|
|
@ -13,6 +16,7 @@ setup(
|
|
|
|
license="Apache",
|
|
|
|
license="Apache",
|
|
|
|
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
|
|
|
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
|
|
|
namespace_packages=["qurator"],
|
|
|
|
namespace_packages=["qurator"],
|
|
|
|
|
|
|
|
install_requires=install_requires,
|
|
|
|
entry_points={
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": console_scripts,
|
|
|
|
"console_scripts": console_scripts,
|
|
|
|
},
|
|
|
|
},
|
|
|
|