mirror of
https://github.com/qurator-spk/sbb_binarization.git
synced 2025-08-07 09:09:58 +02:00
remove setup.py
This commit is contained in:
parent
676b6f1c69
commit
0f611f8e56
1 changed files with 0 additions and 29 deletions
29
setup.py
29
setup.py
|
@ -1,29 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
from json import load
|
|
||||||
from setuptools import setup, find_packages
|
|
||||||
|
|
||||||
with open('./ocrd-tool.json', 'r') as f:
|
|
||||||
version = load(f)['version']
|
|
||||||
|
|
||||||
install_requires = open('requirements.txt').read().split('\n')
|
|
||||||
|
|
||||||
setup(
|
|
||||||
name='sbb_binarization',
|
|
||||||
version=version,
|
|
||||||
description='Pixelwise binarization with selectional auto-encoders in Keras',
|
|
||||||
long_description=open('README.md').read(),
|
|
||||||
long_description_content_type='text/markdown',
|
|
||||||
author='Vahid Rezanezhad',
|
|
||||||
url='https://github.com/qurator-spk/sbb_binarization',
|
|
||||||
license='Apache License 2.0',
|
|
||||||
packages=find_packages(exclude=('test', 'repo')),
|
|
||||||
include_package_data=True,
|
|
||||||
package_data={'': ['*.json', '*.yml', '*.yaml']},
|
|
||||||
install_requires=install_requires,
|
|
||||||
entry_points={
|
|
||||||
'console_scripts': [
|
|
||||||
'sbb_binarize=sbb_binarize.cli:main',
|
|
||||||
'ocrd-sbb-binarize=sbb_binarize.ocrd_cli:cli',
|
|
||||||
]
|
|
||||||
},
|
|
||||||
)
|
|
Loading…
Add table
Add a link
Reference in a new issue