-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
setup(
name='ocr4all-segmentation',
version='0.0.1',
packages=find_packages(),
license='LGPL-v3.0',
long_description=open("README.md").read(),
include_package_data=True,
author="Alexander Hartelt",
author_email="[email protected]",
url="https://gitlab2.informatik.uni-wuerzburg.de/alh75dg/ocr4all-segmentation.git",
download_url='https://gitlab2.informatik.uni-wuerzburg.de/alh75dg/ocr4all-segmentation.git',
entry_points={
'console_scripts': [
'ocr4all_segmentation_predict=ocr4all_segmentation.scripts.predict:main',
'ocrd-ocr4all-segmentation=ocr4all_segmentation.ocrd_integration.cli:ocrd_ocr4all_segmentation',
],
},
install_requires=open("requirements.txt").read().split(),
extras_require={
'tf_cpu': ['tensorflow>=1.6.0'],
'tf_gpu': ['tensorflow-gpu>=1.6.0'],
},
keywords=['OMR', 'Page content detection', 'pixel classifier'],
data_files=[('', ["requirements.txt"])],
)